| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class ServiceProvider extends Provider |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @since 1.0.0 |
||
| 17 | */ |
||
| 18 | public function boot() |
||
| 19 | { |
||
| 20 | // Publish a config file |
||
| 21 | $this->publishes([ |
||
| 22 | __DIR__ . '/../config/locale.php' => config_path('locale.php'), |
||
| 23 | ], 'config'); |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @since 1.0.0 |
||
| 28 | */ |
||
| 29 | public function register() |
||
| 32 | } |
||
| 33 | } |
||
| 34 |