Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function boot() |
||
13 | { |
||
14 | if ($this->app->runningInConsole()) { |
||
15 | $this->publishes([ |
||
16 | __DIR__.'/../config/config.php' => config_path('faker-image-generator.php'), |
||
17 | ], 'config'); |
||
18 | |||
19 | // Publishing assets. |
||
20 | $this->publishes([ |
||
21 | __DIR__.'/../resources/assets' => public_path('vendor/faker-image-generator'), |
||
22 | ], 'assets'); |
||
23 | } |
||
24 | } |
||
25 | |||
35 |