1 | <?php |
||
7 | class LaravelLocalizationServiceProvider extends ServiceProvider |
||
8 | { |
||
9 | /** |
||
10 | * Bootstrap the application events. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function boot() |
||
20 | |||
21 | /** |
||
22 | * Get the services provided by the provider. |
||
23 | * |
||
24 | * @return array |
||
25 | */ |
||
26 | public function provides() |
||
30 | |||
31 | /** |
||
32 | * Register the service provider. |
||
33 | * |
||
34 | * @return void |
||
35 | */ |
||
36 | public function register() |
||
48 | |||
49 | /** |
||
50 | * Registers app bindings and aliases. |
||
51 | */ |
||
52 | protected function registerBindings() |
||
60 | |||
61 | /** |
||
62 | * Registers route caching commands. |
||
63 | */ |
||
64 | protected function registerCommands() |
||
76 | } |
||
77 |