| 1 | <?php |
||
| 10 | class SessionServiceProvider extends AbstractServiceProvider |
||
| 11 | { |
||
| 12 | protected $provides = [ |
||
| 13 | SessionManager::class, |
||
| 14 | ]; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Use the register method to register items with the container via the |
||
| 18 | * protected $this->container property or the `getContainer` method |
||
| 19 | * from the ContainerAwareTrait. |
||
| 20 | * |
||
| 21 | * @return void |
||
| 22 | * @throws \Psr\Container\ContainerExceptionInterface |
||
| 23 | */ |
||
| 24 | public function register(): void |
||
| 33 | } |
||
| 34 |