@@ -11,26 +11,26 @@ |
||
11 | 11 | \Epesi\Core\Console\AdminCommand::class |
12 | 12 | ]; |
13 | 13 | |
14 | - /** |
|
15 | - * Booting the package. |
|
16 | - */ |
|
17 | - public function boot() |
|
18 | - { |
|
19 | - // Register migrations from installed modules |
|
20 | - $this->loadMigrationsFrom(Module::collect('migrations')); |
|
14 | + /** |
|
15 | + * Booting the package. |
|
16 | + */ |
|
17 | + public function boot() |
|
18 | + { |
|
19 | + // Register migrations from installed modules |
|
20 | + $this->loadMigrationsFrom(Module::collect('migrations')); |
|
21 | 21 | |
22 | - // Publish files from installed modules |
|
23 | - $this->publishes(Module::collect('public'), 'epesi.module.public'); |
|
22 | + // Publish files from installed modules |
|
23 | + $this->publishes(Module::collect('public'), 'epesi.module.public'); |
|
24 | 24 | |
25 | - // Publish epesi configuration files |
|
26 | - $this->publishes([__DIR__.'/../../config' => config_path()], 'epesi.config'); |
|
27 | - } |
|
25 | + // Publish epesi configuration files |
|
26 | + $this->publishes([__DIR__.'/../../config' => config_path()], 'epesi.config'); |
|
27 | + } |
|
28 | 28 | |
29 | - /** |
|
30 | - * Register the provider. |
|
31 | - */ |
|
32 | - public function register() |
|
33 | - { |
|
34 | - $this->commands($this->commands); |
|
35 | - } |
|
29 | + /** |
|
30 | + * Register the provider. |
|
31 | + */ |
|
32 | + public function register() |
|
33 | + { |
|
34 | + $this->commands($this->commands); |
|
35 | + } |
|
36 | 36 | } |