| Total Complexity | 4 | 
| Total Lines | 25 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 11 | class StoreContainer implements StoreContainerInterface, SingletonInterface  | 
            ||
| 12 | { | 
            ||
| 13 | /**  | 
            ||
| 14 | * @var SingletonContainer  | 
            ||
| 15 | */  | 
            ||
| 16 | private $container;  | 
            ||
| 17 | |||
| 18 | public function __construct(SingletonContainer $container)  | 
            ||
| 19 |     { | 
            ||
| 20 | $this->container = $container;  | 
            ||
| 21 | }  | 
            ||
| 22 | |||
| 23 | public function getRequestStateStore()  | 
            ||
| 24 |     { | 
            ||
| 25 | return $this->container->getInstance(RequestStateStore::class);  | 
            ||
| 26 | }  | 
            ||
| 27 | |||
| 28 | public function getIdStateStore()  | 
            ||
| 31 | }  | 
            ||
| 32 | |||
| 33 | public function getSsoStateStore()  | 
            ||
| 36 | }  | 
            ||
| 37 | }  | 
            ||
| 38 |