Conditions | 2 |
Paths | 2 |
Total Lines | 22 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
29 | public function boot() |
||
30 | { |
||
31 | require __DIR__.'/helpers.php'; |
||
32 | |||
33 | if (!$this->app->routesAreCached()) { |
||
34 | require __DIR__.'/Http/routes.php'; |
||
35 | } |
||
36 | |||
37 | $this->publishes( |
||
38 | [ |
||
39 | __DIR__.'/../config/cas.php' => config_path('cas.php'), |
||
40 | ], |
||
41 | 'config' |
||
42 | ); |
||
43 | |||
44 | $this->publishes( |
||
45 | [ |
||
46 | __DIR__.'/../database/migrations/' => database_path('migrations'), |
||
47 | ], |
||
48 | 'migrations' |
||
49 | ); |
||
50 | } |
||
51 | } |
||
52 |