Total Complexity | 1 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
12 | class SecurityCommand extends Command |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $name = 'security-check:now'; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description = 'Checks composer.lock for any vulnerabilities against the SensioLabs checker.'; |
||
23 | |||
24 | /** |
||
25 | * Execute the command |
||
26 | */ |
||
27 | public function handle() |
||
45 |