Total Complexity | 4 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class ContainerSingleton |
||
10 | { |
||
11 | /** @var \SimpleSAML\SAML2\Compat\AbstractContainer */ |
||
12 | protected static AbstractContainer $container; |
||
13 | |||
14 | |||
15 | /** |
||
16 | * @return \SimpleSAML\SAML2\Compat\AbstractContainer |
||
17 | */ |
||
18 | public static function getInstance(): AbstractContainer |
||
19 | { |
||
20 | if (!isset(self::$container)) { |
||
21 | self::$container = self::initSspContainer(); |
||
22 | } |
||
23 | Assert::notNull(self::$container, 'No container set.'); |
||
24 | return self::$container; |
||
25 | } |
||
26 | |||
27 | |||
28 | /** |
||
29 | * Set a container to use. |
||
30 | * |
||
31 | * @param \SimpleSAML\SAML2\Compat\AbstractContainer $container |
||
32 | */ |
||
33 | public static function setContainer(AbstractContainer $container): void |
||
36 | } |
||
37 | |||
38 | |||
39 | /** |
||
40 | * @return \SAML2\Compat\SspContainer |
||
|
|||
41 | */ |
||
42 | public static function initSspContainer() : SspContainer |
||
45 | } |
||
46 | } |
||
47 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths