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