Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
56 | protected function publishResources() |
||
57 | { |
||
58 | $this->publishes([ |
||
59 | __DIR__.'/database/migrations/' => database_path('migrations'), |
||
60 | ], 'migrations'); |
||
61 | |||
62 | $this->publishes([ |
||
63 | __DIR__.'/../dist' => public_path('vendor/larafolio'), |
||
64 | ], 'public'); |
||
65 | |||
66 | $this->publishes([ |
||
67 | __DIR__.'/config/larafolio.php' => config_path('larafolio.php'), |
||
68 | ]); |
||
69 | |||
70 | $this->publishes([ |
||
71 | __DIR__.'/config/imagecache.php' => config_path('imagecache.php'), |
||
72 | ]); |
||
73 | } |
||
74 | } |
||
75 |