Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php namespace C4tech\RayEmitter; |
||
27 | 1 | public function boot() |
|
28 | { |
||
29 | 1 | $configs = []; |
|
30 | 1 | $configs[$this->configPath] = config_path('ray_emitter.php'); |
|
31 | 1 | $this->publishes($configs, 'config'); |
|
32 | |||
33 | 1 | $migrations = []; |
|
34 | 1 | $migrations[$this->migrationPath] = database_path('migrations'); |
|
35 | 1 | $this->publishes($migrations, 'migrations'); |
|
36 | 1 | } |
|
37 | |||
61 |