Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
18 | interface MultipleQueueInterface extends QueueInterface |
||
19 | { |
||
20 | /** |
||
21 | * @return QueueInterface[]; |
||
|
|||
22 | */ |
||
23 | public function getQueues(); |
||
24 | |||
25 | /** |
||
26 | * @param $index |
||
27 | * @return QueueInterface; |
||
28 | */ |
||
29 | public function getQueue($index); |
||
30 | |||
31 | /** |
||
32 | * @param JobInterface $job |
||
33 | * @param $index |
||
34 | * @return bool |
||
35 | */ |
||
36 | public function postToQueue(JobInterface $job, $index): bool; |
||
37 | } |
||
38 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.