1 | <?php |
||
8 | class FormerServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Bootstrap any application services. |
||
12 | * |
||
13 | * @return void |
||
14 | */ |
||
15 | public function boot() |
||
19 | |||
20 | /** |
||
21 | * Register the Former resources. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | protected function registerResources() |
||
29 | |||
30 | /** |
||
31 | * Register the service provider. |
||
32 | * |
||
33 | * @return void |
||
34 | */ |
||
35 | public function register() |
||
40 | |||
41 | /** |
||
42 | * Setup the configuration for Former. |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | protected function configure() |
||
52 | |||
53 | /** |
||
54 | * Register the factories for Former. |
||
55 | * |
||
56 | * @return void |
||
57 | */ |
||
58 | protected function registerFactories() |
||
64 | } |
||
65 |