Skip to content

Commit

Permalink
Fix DocblockTypeContradiction
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Nov 6, 2019
1 parent 5f41a09 commit 2f753c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SAML2/Compat/ContainerSingleton.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ContainerSingleton
*/
public static function getInstance() : AbstractContainer
{
if (!self::$container) {
if (!isset(self::$container)) {
self::$container = self::initSspContainer();
}
return self::$container;
Expand Down

0 comments on commit 2f753c7

Please sign in to comment.