1 | <?php |
||
13 | class WebSocketServiceProvider extends ServiceProvider |
||
14 | { |
||
15 | /** |
||
16 | * Register the application services. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | 4 | public function register() |
|
27 | |||
28 | /** |
||
29 | * Setup the configuration. |
||
30 | * |
||
31 | * @return $this |
||
32 | */ |
||
33 | 4 | protected function configure(): self |
|
42 | |||
43 | /** |
||
44 | * Setup the resource publishing groups. |
||
45 | * |
||
46 | * @return $this |
||
47 | */ |
||
48 | 4 | protected function offerPublishing(): self |
|
58 | |||
59 | /** |
||
60 | * Register the services. |
||
61 | * |
||
62 | * @return $this |
||
63 | */ |
||
64 | 4 | protected function registerServices(): self |
|
90 | |||
91 | /** |
||
92 | * Register the commands. |
||
93 | * |
||
94 | * @return $this |
||
95 | */ |
||
96 | 4 | protected function registerCommands(): self |
|
106 | } |
||
107 |