| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class BeyonicServiceProvider extends ServiceProvider |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Bootstrap the application services. |
||
| 14 | */ |
||
| 15 | 4 | public function boot() |
|
| 16 | { |
||
| 17 | 4 | if ($this->app->runningInConsole()) { |
|
| 18 | 4 | $this->publishes([ |
|
| 19 | 4 | __DIR__.'/../config/beyonic.php' => base_path('config/beyonic.php'), |
|
| 20 | 4 | ], 'beyonic-config'); |
|
| 21 | } |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Register the application services. |
||
| 26 | */ |
||
| 27 | 4 | public function register() |
|
| 30 | } |
||
| 31 | } |
||
| 32 |