| Total Complexity | 2 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class AssetCdnServiceProvider extends ServiceProvider |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Bootstrap the application events. |
||
| 14 | * |
||
| 15 | * @return void |
||
| 16 | */ |
||
| 17 | public function boot() |
||
| 18 | { |
||
| 19 | $this->publishes([ |
||
| 20 | __DIR__.'/../config/asset-cdn.php' => config_path('asset-cdn.php'), |
||
| 21 | ], 'config'); |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Register the service provider. |
||
| 26 | * |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | public function register() |
||
| 45 | ]); |
||
| 46 | } |
||
| 48 |