| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 43 | protected function registerPublishes() |
||
| 44 | { |
||
| 45 | if ($this->app->runningInConsole()) { |
||
| 46 | $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); |
||
| 47 | |||
| 48 | $this->publishes( |
||
| 49 | [ |
||
| 50 | __DIR__ . '/../../config/formio.php' => config_path('formio.php'), |
||
|
|
|||
| 51 | ], |
||
| 52 | 'formio-config' |
||
| 53 | ); |
||
| 54 | |||
| 55 | $this->publishes( |
||
| 56 | [ |
||
| 57 | __DIR__ . '/../../database/migrations' => database_path('migrations'), |
||
| 58 | ], |
||
| 59 | 'formio-migrations' |
||
| 60 | ); |
||
| 82 |