@@ -6,35 +6,35 @@ |
||
| 6 | 6 | |
| 7 | 7 | class ApiSkeletonServiceProvider extends ServiceProvider |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * Perform post-registration booting of services. |
|
| 11 | - * |
|
| 12 | - * @return void |
|
| 13 | - */ |
|
| 14 | - public function boot() |
|
| 15 | - { |
|
| 16 | - $this->publishes([ |
|
| 17 | - __DIR__.'/Modules' => app_path('Modules'), |
|
| 18 | - __DIR__.'/../lang' => base_path('resources/lang'), |
|
| 19 | - __DIR__.'/../files/Handler.php' => base_path('app/Exceptions/Handler.php'), |
|
| 20 | - __DIR__.'/../files/auth.php' => base_path('config/auth.php'), |
|
| 21 | - __DIR__.'/../files/AuthServiceProvider.php' => base_path('app/Providers/AuthServiceProvider.php'), |
|
| 22 | - __DIR__.'/../files/BroadcastServiceProvider.php' => base_path('app/Providers/BroadcastServiceProvider.php'), |
|
| 23 | - __DIR__.'/../files/Kernel.php' => base_path('app/Console/Kernel.php'), |
|
| 24 | - ]); |
|
| 9 | + /** |
|
| 10 | + * Perform post-registration booting of services. |
|
| 11 | + * |
|
| 12 | + * @return void |
|
| 13 | + */ |
|
| 14 | + public function boot() |
|
| 15 | + { |
|
| 16 | + $this->publishes([ |
|
| 17 | + __DIR__.'/Modules' => app_path('Modules'), |
|
| 18 | + __DIR__.'/../lang' => base_path('resources/lang'), |
|
| 19 | + __DIR__.'/../files/Handler.php' => base_path('app/Exceptions/Handler.php'), |
|
| 20 | + __DIR__.'/../files/auth.php' => base_path('config/auth.php'), |
|
| 21 | + __DIR__.'/../files/AuthServiceProvider.php' => base_path('app/Providers/AuthServiceProvider.php'), |
|
| 22 | + __DIR__.'/../files/BroadcastServiceProvider.php' => base_path('app/Providers/BroadcastServiceProvider.php'), |
|
| 23 | + __DIR__.'/../files/Kernel.php' => base_path('app/Console/Kernel.php'), |
|
| 24 | + ]); |
|
| 25 | 25 | |
| 26 | - $this->publishes([ |
|
| 27 | - __DIR__.'/../config/skeleton.php' => config_path('skeleton.php'), |
|
| 28 | - ], 'config'); |
|
| 29 | - } |
|
| 26 | + $this->publishes([ |
|
| 27 | + __DIR__.'/../config/skeleton.php' => config_path('skeleton.php'), |
|
| 28 | + ], 'config'); |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | - /** |
|
| 32 | - * Register any package services. |
|
| 33 | - * |
|
| 34 | - * @return void |
|
| 35 | - */ |
|
| 36 | - public function register() |
|
| 37 | - { |
|
| 38 | - // |
|
| 39 | - } |
|
| 31 | + /** |
|
| 32 | + * Register any package services. |
|
| 33 | + * |
|
| 34 | + * @return void |
|
| 35 | + */ |
|
| 36 | + public function register() |
|
| 37 | + { |
|
| 38 | + // |
|
| 39 | + } |
|
| 40 | 40 | } |
| 41 | 41 | \ No newline at end of file |