| Total Complexity | 3 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class DKBaseServiceProvider extends ServiceProvider |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Bootstrap the application services. |
||
| 16 | */ |
||
| 17 | public function boot() |
||
| 31 | |||
| 32 | // Publishing the views. |
||
| 33 | /*$this->publishes([ |
||
| 34 | __DIR__.'/../resources/views' => resource_path('views/vendor/dkbase'), |
||
| 35 | ], 'views');*/ |
||
| 36 | |||
| 37 | // Publishing assets. |
||
| 38 | /*$this->publishes([ |
||
| 39 | __DIR__.'/../resources/assets' => public_path('vendor/dkbase'), |
||
| 40 | ], 'assets');*/ |
||
| 41 | |||
| 42 | // Publishing the translation files. |
||
| 43 | /*$this->publishes([ |
||
| 44 | __DIR__.'/../resources/lang' => resource_path('lang/vendor/dkbase'), |
||
| 45 | ], 'lang');*/ |
||
| 46 | |||
| 47 | // Registering package commands. |
||
| 48 | // $this->commands([]); |
||
| 49 | } |
||
| 50 | } |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Register the application services. |
||
| 54 | */ |
||
| 55 | public function register() |
||
| 61 |