| 1 | <?php |
||
| 8 | class AgentServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Register the service provider. |
||
| 12 | * |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | public function register() |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Register the Agent. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | protected function registerAgent() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Register the Client. |
||
| 36 | * |
||
| 37 | * @return void |
||
| 38 | */ |
||
| 39 | protected function registerClient() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Create alias for the facade. |
||
| 52 | * |
||
| 53 | * @param string $facade |
||
| 54 | * @param string $class |
||
| 55 | * @return void |
||
| 56 | */ |
||
| 57 | protected function aliasFacade($facade, $class) |
||
| 65 | } |
||
| 66 |