| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1.0156 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 1 | public function handleDependencies(DependencyContainerInterface $container): DependencyContainerInterface |
|
| 18 | { |
||
| 19 | $container[self::LOGIN_PLUGINS] = function () { |
||
| 20 | 1 | return $this->getLoginPluginList(); |
|
| 21 | }; |
||
| 22 | |||
| 23 | $container[self::SESSION_FACADE] = function (DependencyContainerInterface $container) { |
||
| 24 | return $container->getLocator()->session()->facade(); |
||
|
|
|||
| 25 | }; |
||
| 26 | |||
| 27 | 1 | return $container; |
|
| 28 | } |
||
| 39 | } |