Total Complexity | 2 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class SecurityCommand extends Command |
||
10 | { |
||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $name = 'security-check:now'; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $description = 'Checks composer.lock for any vulnerabilities against the SensioLabs checker.'; |
||
20 | |||
21 | /** |
||
22 | * @var SecurityChecker |
||
23 | */ |
||
24 | protected $checker; |
||
25 | |||
26 | /** |
||
27 | * SecurityCommand constructor. |
||
28 | * @param SecurityChecker $checker |
||
29 | */ |
||
30 | public function __construct(SecurityChecker $checker) |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * |
||
39 | */ |
||
40 | public function fire() |
||
50 | } |
||
51 | } |