Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
38 | 3 | public function handle() |
|
39 | { |
||
40 | 3 | $this->info('Publishing the config files'); |
|
41 | 3 | Artisan::call('vendor:publish', [ |
|
42 | 3 | '--provider' => AuditingServiceProvider::class, |
|
43 | ]); |
||
44 | |||
45 | 3 | $this->info('Publishing the migration file'); |
|
46 | 3 | Artisan::call('auditing:table'); |
|
47 | |||
48 | 3 | $this->info('Successfully installed Laravel Auditing! Enjoy :)'); |
|
49 | 3 | } |
|
51 |