Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
23 | 9 | public function boot(Filesystem $filesystem) |
|
24 | { |
||
25 | 9 | $this->publishes([ |
|
26 | 9 | __DIR__.'/../config/latevaweb-translatable.php' => config_path('latevaweb-translatable.php'), |
|
27 | 9 | ], 'config'); |
|
28 | |||
29 | 9 | $this->publishes([ |
|
30 | 9 | __DIR__.'/../database/migrations/create_translations_tables.php.stub' => $this->getMigrationFileName($filesystem), |
|
31 | 9 | ], 'migrations'); |
|
32 | 9 | } |
|
33 | |||
65 |