1 | <?php |
||
10 | class ChannelServiceProvider extends AbstractServiceProvider |
||
11 | { |
||
12 | protected $provides = [ |
||
13 | ChannelManager::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 | */ |
||
23 | 1 | public function register(): void |
|
38 | } |
||
39 |