Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function boot() |
||
17 | { |
||
18 | // Config |
||
19 | $this->publishes([__DIR__.'/../config/push-notification.php' => config_path('push-notification.php')]); |
||
20 | // Migration |
||
21 | $this->publishes([__DIR__.'/../database/migrations' => $this->app->databasePath().'/migrations'], 'migrations'); |
||
22 | } |
||
23 | |||
41 |