@@ -6,41 +6,41 @@ |
||
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__.'/Modules/Core/Resources/Assets' => base_path('public/doc/assets'), |
|
19 | - __DIR__.'/../lang' => base_path('resources/lang'), |
|
20 | - __DIR__.'/../files/Handler.php' => app_path('Exceptions/Handler.php'), |
|
21 | - __DIR__.'/../files/AuthServiceProvider.php' => app_path('Providers/AuthServiceProvider.php'), |
|
22 | - __DIR__.'/../files/BroadcastServiceProvider.php' => app_path('Providers/BroadcastServiceProvider.php'), |
|
23 | - __DIR__.'/../files/Kernel.php' => app_path('Console/Kernel.php'), |
|
24 | - __DIR__.'/../files/HttpKernel.php' => app_path('Http/Kernel.php'), |
|
25 | - __DIR__.'/../files/channels.php' => base_path('routes/channels.php'), |
|
26 | - __DIR__.'/../files/Jenkinsfile' => base_path('/Jenkinsfile'), |
|
27 | - __DIR__.'/../files/phpcs.xml' => base_path('/phpcs.xml'), |
|
28 | - __DIR__.'/../files/docker' => base_path('/docker'), |
|
29 | - __DIR__.'/../files/.dockerignore' => base_path('/.dockerignore'), |
|
30 | - ]); |
|
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__.'/Modules/Core/Resources/Assets' => base_path('public/doc/assets'), |
|
19 | + __DIR__.'/../lang' => base_path('resources/lang'), |
|
20 | + __DIR__.'/../files/Handler.php' => app_path('Exceptions/Handler.php'), |
|
21 | + __DIR__.'/../files/AuthServiceProvider.php' => app_path('Providers/AuthServiceProvider.php'), |
|
22 | + __DIR__.'/../files/BroadcastServiceProvider.php' => app_path('Providers/BroadcastServiceProvider.php'), |
|
23 | + __DIR__.'/../files/Kernel.php' => app_path('Console/Kernel.php'), |
|
24 | + __DIR__.'/../files/HttpKernel.php' => app_path('Http/Kernel.php'), |
|
25 | + __DIR__.'/../files/channels.php' => base_path('routes/channels.php'), |
|
26 | + __DIR__.'/../files/Jenkinsfile' => base_path('/Jenkinsfile'), |
|
27 | + __DIR__.'/../files/phpcs.xml' => base_path('/phpcs.xml'), |
|
28 | + __DIR__.'/../files/docker' => base_path('/docker'), |
|
29 | + __DIR__.'/../files/.dockerignore' => base_path('/.dockerignore'), |
|
30 | + ]); |
|
31 | 31 | |
32 | - $this->publishes([ |
|
33 | - __DIR__.'/../files/auth.php' => config_path('auth.php'), |
|
34 | - ], 'config'); |
|
35 | - } |
|
32 | + $this->publishes([ |
|
33 | + __DIR__.'/../files/auth.php' => config_path('auth.php'), |
|
34 | + ], 'config'); |
|
35 | + } |
|
36 | 36 | |
37 | - /** |
|
38 | - * Register any package services. |
|
39 | - * |
|
40 | - * @return void |
|
41 | - */ |
|
42 | - public function register() |
|
43 | - { |
|
44 | - // |
|
45 | - } |
|
37 | + /** |
|
38 | + * Register any package services. |
|
39 | + * |
|
40 | + * @return void |
|
41 | + */ |
|
42 | + public function register() |
|
43 | + { |
|
44 | + // |
|
45 | + } |
|
46 | 46 | } |