Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | public function boot() |
||
14 | { |
||
15 | $this->loadMigrationsFrom(__DIR__ . '/migrations'); |
||
16 | |||
17 | if ($this->app->runningInConsole()) { |
||
18 | $this->commands([ |
||
19 | RunDeployMigrationsCommand::class, |
||
20 | CreateMigrationCommand::class |
||
21 | ]); |
||
22 | } |
||
23 | |||
24 | $this->publishes([ |
||
25 | __DIR__ . '/Config' => config_path() |
||
26 | ]); |
||
36 | } |