Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | class SecurityAlertCheckJob extends AbstractQueuedJob implements QueuedJob |
||
17 | { |
||
18 | public function getTitle() |
||
19 | { |
||
20 | return _t( |
||
21 | __CLASS__ . '.Title', |
||
22 | 'Check if any composer managed modules have known security vulnerabilities.' |
||
23 | ); |
||
24 | } |
||
25 | |||
26 | public function getJobType() |
||
27 | { |
||
28 | $this->totalSteps = 1; |
||
29 | |||
30 | return QueuedJob::QUEUED; |
||
31 | } |
||
32 | |||
33 | public function process() |
||
41 | } |
||
42 | } |
||
43 |