Total Complexity | 4 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
8 | class InstallCommand extends Command |
||
9 | { |
||
10 | /** |
||
11 | * {@inheritdoc} |
||
12 | */ |
||
13 | protected $signature = 'auditing:install'; |
||
14 | |||
15 | /** |
||
16 | * {@inheritdoc} |
||
17 | */ |
||
18 | protected $description = 'Install all of the Auditing resources'; |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function handle(): void |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Register the Auditing service provider in the application configuration file. |
||
38 | * |
||
39 | * @return void |
||
40 | */ |
||
41 | protected function registerAuditingServiceProvider() |
||
58 |