| Total Complexity | 2 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class UnionCloudServiceProvider extends ServiceProvider |
||
| 19 | { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Indicates if loading of the provider is deferred. |
||
| 23 | * |
||
| 24 | * @var bool |
||
| 25 | */ |
||
| 26 | protected $defer = true; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Bootstrap the application events. |
||
| 30 | * |
||
| 31 | * @return void |
||
| 32 | */ |
||
| 33 | public function boot() |
||
| 34 | { |
||
| 35 | $this->publishes([ |
||
| 36 | __DIR__ . '/config/unioncloud.php' => config_path('unioncloud.php'), |
||
|
|
|||
| 37 | ], 'config'); |
||
| 38 | |||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Register the service provider. |
||
| 43 | * |
||
| 44 | * @return void |
||
| 45 | */ |
||
| 46 | public function register() |
||
| 58 | }); |
||
| 59 | } |
||
| 61 | } |