Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | abstract class Job |
||
12 | { |
||
13 | /** |
||
14 | * @param Context $context |
||
15 | * @return string |
||
16 | */ |
||
17 | abstract public function handle(Context $context): string; |
||
18 | |||
19 | /** |
||
20 | * @return string |
||
21 | */ |
||
22 | 2 | public function queue(): string |
|
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return int|null |
||
29 | */ |
||
30 | 1 | public function attempts(): ?int |
|
35 |