Passed
Pull Request — master (#343)
by
unknown
12:55
created

ContainerSingleton   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 8
c 1
b 0
f 0
dl 0
loc 36
rs 10
wmc 4

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setContainer() 0 3 1
A initSspContainer() 0 3 1
A getInstance() 0 7 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace SimpleSAML\SAML2\Compat;
6
7
use SimpleSAML\Assert\Assert;
8
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
34
    {
35
        self::$container = $container;
36
    }
37
38
39
    /**
40
     * @return \SAML2\Compat\SspContainer
0 ignored issues
show
Bug introduced by
The type SAML2\Compat\SspContainer was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
41
     */
42
    public static function initSspContainer() : SspContainer
0 ignored issues
show
Bug introduced by
The type SimpleSAML\SAML2\Compat\SspContainer was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
43
    {
44
        return new SspContainer();
45
    }
46
}
47