Skip to content
Snippets Groups Projects
Unverified Commit 7463cd58 authored by Jaime Pérez Crespo's avatar Jaime Pérez Crespo Committed by GitHub
Browse files

Remove superfluous annotation

Also, `$instance` can actually be `null` internally.
parent 040c3b98
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ abstract class Store implements Utils\ClearableState
*
* This is false if the data store isn't enabled, and null if we haven't attempted to initialize it.
*
* @var \SimpleSAML\Store|false
* @var \SimpleSAML\Store|false|null
*/
private static $instance;
......@@ -68,7 +68,6 @@ abstract class Store implements Utils\ClearableState
self::$instance = new $className();
}
/** @var \SimpleSAML\Store|false */
return self::$instance;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment