| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 23 | public function handle(): void |
||
| 24 | { |
||
| 25 | $this->comment('Publishing Auditing Configuration...'); |
||
| 26 | $this->callSilent('vendor:publish', ['--tag' => 'config']); |
||
| 27 | |||
| 28 | $this->comment('Publishing Auditing Migrations...'); |
||
| 29 | $this->callSilent('vendor:publish', ['--tag' => 'migrations']); |
||
| 30 | |||
| 31 | $this->registerAuditingServiceProvider(); |
||
| 32 | |||
| 33 | $this->info('Auditing installed successfully.'); |
||
| 34 | } |
||
| 58 |