Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
14 | class SessionService extends AbstractWithLocator implements ServiceInterface |
||
15 | { |
||
16 | /** |
||
17 | * @param \Xervice\Kernel\Business\Service\ServiceProviderInterface $serviceProvider |
||
18 | * |
||
19 | * @throws \RuntimeException |
||
20 | * @throws \InvalidArgumentException |
||
21 | * @throws \Core\Locator\Dynamic\ServiceNotParseable |
||
22 | */ |
||
23 | public function boot(ServiceProviderInterface $serviceProvider): void |
||
24 | { |
||
25 | $this->getFacade()->initSession(); |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @param \Xervice\Kernel\Business\Service\ServiceProviderInterface $serviceProvider |
||
30 | */ |
||
31 | public function execute(ServiceProviderInterface $serviceProvider): void |
||
33 | } |
||
34 | } |
||
35 |