1 | <?php namespace Propaganistas\LaravelTranslatableBootForms; |
||
5 | class TranslatableBootFormsServiceProvider extends ServiceProvider { |
||
6 | |||
7 | /** |
||
8 | * Indicates if loading of the provider is deferred. |
||
9 | * |
||
10 | * @var bool |
||
11 | */ |
||
12 | protected $defer = true; |
||
13 | |||
14 | /** |
||
15 | * Boot the application events. |
||
16 | * |
||
17 | * @return void |
||
18 | */ |
||
19 | public function boot() |
||
25 | |||
26 | /** |
||
27 | * Register the service provider. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function register() |
||
57 | |||
58 | /** |
||
59 | * Get the services provided by the provider. |
||
60 | * |
||
61 | * @return array |
||
62 | */ |
||
63 | public function provides() |
||
70 | |||
71 | /** |
||
72 | * Get Translatable's locales. |
||
73 | * |
||
74 | * @return array |
||
75 | */ |
||
76 | protected function getLocales() |
||
80 | |||
81 | } |
||
82 |