1 | <?php |
||
9 | class LarouteServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | /** |
||
12 | * Bootstrap the application events. |
||
13 | * |
||
14 | * @return void |
||
15 | */ |
||
16 | public function boot() |
||
21 | |||
22 | /** |
||
23 | * Register the service provider. |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | public function register() |
||
38 | |||
39 | /** |
||
40 | * Get the config path. |
||
41 | * |
||
42 | * @return string |
||
43 | */ |
||
44 | protected function getConfigPath() |
||
48 | |||
49 | /** |
||
50 | * Register the generator. |
||
51 | * |
||
52 | * @return void |
||
53 | */ |
||
54 | protected function registerGenerator() |
||
61 | |||
62 | /** |
||
63 | * Register the compiler. |
||
64 | * |
||
65 | * @return void |
||
66 | */ |
||
67 | protected function registerCompiler() |
||
74 | |||
75 | /** |
||
76 | * Register the command. |
||
77 | * |
||
78 | * @return void |
||
79 | */ |
||
80 | protected function registerCommand() |
||
95 | } |
||
96 |