| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | public function boot() |
||
| 10 | { |
||
| 11 | if ($this->app->runningInConsole()) { |
||
| 12 | $this->publishes([ |
||
| 13 | __DIR__.'/../config/laravel-applicant.php' => config_path('laravel-applicant.php'), |
||
| 14 | ], 'config'); |
||
| 15 | |||
| 16 | $this->publishes([ |
||
| 17 | __DIR__.'/../database/migrations/create_applications_table.php.stub' => $this->app->databasePath().'/migrations/'.date('Y_m_d_His').'_create_applications_table.php', |
||
| 18 | ], 'migrations'); |
||
| 19 | } |
||
| 20 | } |
||
| 21 | |||
| 27 |