| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 80% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | final class WebsocketsBootloader extends Bootloader implements SingletonInterface |
||
| 17 | { |
||
| 18 | protected const DEPENDENCIES = [ |
||
| 19 | HttpBootloader::class, |
||
| 20 | BroadcastingBootloader::class, |
||
| 21 | ]; |
||
| 22 | |||
| 23 | 196 | public function start(Container $container, HttpBootloader $http, BroadcastConfig $config): void |
|
| 37 |