Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ProviderContainer implements ProviderContainerInterface, SingletonInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var SingletonContainer |
||
17 | */ |
||
18 | private $container; |
||
19 | |||
20 | public function __construct(SingletonContainer $container) |
||
21 | { |
||
22 | $this->container = $container; |
||
23 | } |
||
24 | |||
25 | public function getAttributeValueProvider() |
||
26 | { |
||
27 | return $this->container->getInstance(FixedAttributeValueProvider::class); |
||
28 | } |
||
29 | |||
30 | public function getSessionInfoProvider() |
||
33 | } |
||
34 | |||
35 | public function getNameIdProvider() |
||
38 | } |
||
39 | } |
||
40 |