1 | <?php namespace Rocket\Translation\Support\Laravel5; |
||
6 | class ServiceProvider extends \Illuminate\Support\ServiceProvider |
||
7 | { |
||
8 | 216 | protected function registerManager() |
|
18 | |||
19 | 216 | protected function registerLanguageChangeRoute() |
|
32 | |||
33 | 216 | /** |
|
34 | 216 | * Register the service provider. |
|
35 | 216 | * |
|
36 | 216 | * @return void |
|
37 | */ |
||
38 | 216 | public function register() |
|
44 | |||
45 | /** |
||
46 | * Get the services provided by the provider. |
||
47 | * |
||
48 | 216 | * @return array |
|
49 | */ |
||
50 | 216 | public function provides() |
|
54 | 216 | ||
55 | 216 | /** |
|
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | public function boot() |
||
64 | } |
||
65 |