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