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