Total Complexity | 6 |
Total Lines | 63 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class ServiceProvider extends LaravelServiceProvider |
||
15 | { |
||
16 | /** |
||
17 | * Bootstrap services. |
||
18 | * |
||
19 | * @return void |
||
20 | */ |
||
21 | public function boot() |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Register services. |
||
30 | * |
||
31 | * @return void |
||
32 | */ |
||
33 | public function register() |
||
34 | { |
||
35 | $this->mergeConfigFrom(__DIR__ . '/../../config/formio.php', 'formio'); |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * There are several resources that get published |
||
40 | * |
||
41 | * Only worry about telling the application about them if running in the console. |
||
42 | */ |
||
43 | protected function registerPublishes() |
||
60 | ); |
||
61 | } |
||
62 | } |
||
63 | |||
64 | /** |
||
65 | * Register the routes needed for the registration flow |
||
66 | */ |
||
67 | protected function registerRoutes() |
||
77 | } |
||
78 | ); |
||
82 |