1 | <?php |
||
8 | class AgentServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap the service provider. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | public function boot() |
||
19 | |||
20 | /** |
||
21 | * Register the service provider. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function register() |
||
31 | |||
32 | /** |
||
33 | * Register the Agent. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | protected function registerAgent() |
||
47 | |||
48 | /** |
||
49 | * Register the Client. |
||
50 | * |
||
51 | * @return void |
||
52 | */ |
||
53 | protected function registerClient() |
||
61 | } |
||
62 |