| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 8 | class TranslatableServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Boots the service provider. |
||
| 12 | * |
||
| 13 | * @return void |
||
| 14 | */ |
||
| 15 | 34 | public function boot() |
|
| 16 | { |
||
| 17 | 34 | $this->publishes([ |
|
| 18 | 34 | __DIR__ . ' /../config/translatable.php' => config_path('translatable.php'), |
|
| 19 | 34 | ], 'config'); |
|
| 20 | 34 | } |
|
| 21 | |||
| 22 | /** |
||
| 23 | * Registers the package's services. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | 34 | public function register() |
|
| 34 | 34 | } |
|
| 35 | } |
||
| 36 |