| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | protected function publishAssets() |
||
| 28 | { |
||
| 29 | $this->publishes([ |
||
| 30 | realpath(__DIR__.'/../config/i18n.php') => config_path('i18n.php'), |
||
| 31 | ], 'config'); |
||
| 32 | |||
| 33 | $this->publishes([ |
||
| 34 | realpath(__DIR__.'/../database/migrations/') => database_path('migrations'), |
||
| 35 | ], 'migrations'); |
||
| 36 | |||
| 37 | $this->publishes([ |
||
| 38 | realpath(__DIR__.'/../storage/i18n/') => storage_path('i18n'), |
||
| 39 | ], 'languages.json'); |
||
| 40 | } |
||
| 41 | |||
| 74 |