Conditions | 2 |
Paths | 2 |
Total Lines | 18 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function boot() |
||
13 | { |
||
14 | /* |
||
15 | * Optional methods to load your package assets |
||
16 | */ |
||
17 | if ($this->app->runningInConsole()) { |
||
18 | $this->publishes([ |
||
19 | __DIR__.'/../config/unsplash.php' => config_path('unsplash.php'), |
||
20 | ], 'config'); |
||
21 | |||
22 | $this->publishes([ |
||
23 | __DIR__.'/../database/migrations/create_unsplashables_table.php.stub' => database_path('migrations').'/'.date('Y_m_d_His').'_create_unsplashables_table.php', |
||
24 | ], 'migrations'); |
||
25 | $this->publishes([ |
||
26 | __DIR__.'/../database/migrations/create_unsplash_assets_table.php.stub' => database_path('migrations').'/'.date('Y_m_d_His').'_create_unsplash_assets_table.php', |
||
27 | ], 'migrations'); |
||
28 | } |
||
29 | } |
||
30 | |||
50 |