Skip to content

Commit 0f8e5bd

Browse files
committed
Fix DocblockTypeContradiction
1 parent 3806d27 commit 0f8e5bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/SAML2/Compat/ContainerSingleton.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ContainerSingleton
1717
*/
1818
public static function getInstance()
1919
{
20-
if (!self::$container) {
20+
if (!isset(self::$container)) {
2121
self::setContainer(self::initSspContainer());
2222
}
2323
return self::$container;

0 commit comments

Comments
 (0)