| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function boot() |
||
| 15 | { |
||
| 16 | $this->publishes([ |
||
| 17 | realpath(__DIR__.'/../config/i18n.php') => config_path('i18n.php'), |
||
| 18 | ], 'config'); |
||
| 19 | |||
| 20 | $this->publishes([ |
||
| 21 | realpath(__DIR__.'/../database/migrations/') => database_path('migrations'), |
||
| 22 | ], 'migrations'); |
||
| 23 | |||
| 24 | $this->publishes([ |
||
| 25 | realpath(__DIR__.'/../storage/i18n/') => storage_path('i18n'), |
||
| 26 | ], 'languages.json'); |
||
| 27 | } |
||
| 28 | |||
| 43 |