Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php namespace FreedomCore\TrinityCore\Character\Commands; |
||
46 | public function handle() |
||
47 | { |
||
48 | $this->info('Publishing package assets, database and configuration files...'); |
||
49 | $this->call('vendor:publish', ['--provider' => CharacterServiceProvider::class]); |
||
50 | $this->info('Dumping the autoloaded files and reloading all new files'); |
||
51 | (new Process($this->findComposer() . ' dump-autoload -o'))->setWorkingDirectory(base_path())->run(); |
||
52 | } |
||
53 | |||
66 |