| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class NotificationServiceProvider extends AbstractServiceProvider |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @inheritdoc |
||
| 19 | */ |
||
| 20 | public function register() |
||
| 24 | } |
||
| 25 | |||
| 26 | protected function registerChannels() |
||
| 27 | { |
||
| 28 | $manager = new ChannelManager(); |
||
| 29 | $this->getContainer()->share(ChannelInterface::class, $manager); |
||
| 30 | } |
||
| 31 | |||
| 32 | protected function registerDispatcher() |
||
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritdoc |
||
| 40 | */ |
||
| 41 | public function provides() |
||
| 46 |