Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
20 | 108 | public function boot() |
|
21 | { |
||
22 | 108 | $this->publishes([ |
|
23 | 108 | __DIR__.'/../views/exceptions/default.blade.php' => base_path('resources/views/exceptions/default.blade.php'), |
|
24 | 108 | __DIR__.'/../migrations/2016_03_17_000000_create_lern_tables.php' => base_path('database/migrations/2016_03_17_000000_create_lern_tables.php'), |
|
25 | 108 | __DIR__.'/../migrations/2016_03_27_000000_add_user_data_and_url_to_lern_tables.php' => base_path('database/migrations/2016_03_27_000000_add_user_data_and_url_to_lern_tables.php'), |
|
26 | 108 | __DIR__.'/../migrations/2017_09_23_000000_add_ip_to_lern_tables.php' => base_path('database/migrations/2017_09_23_000000_add_ip_to_lern_tables.php'), |
|
27 | 108 | __DIR__.'/../config/lern.php' => base_path('config/lern.php'), |
|
28 | ]); |
||
29 | 108 | } |
|
30 | |||
47 |