1 | <?php |
||
14 | class RabbitMqJob extends Job implements JobContract |
||
15 | { |
||
16 | /** |
||
17 | * @var Container |
||
18 | */ |
||
19 | protected $container; |
||
20 | |||
21 | /** |
||
22 | * @var ProducerInterface |
||
23 | */ |
||
24 | private $producer; |
||
25 | |||
26 | /** |
||
27 | * @var ConsumerInterface |
||
28 | */ |
||
29 | private $consumer; |
||
30 | |||
31 | /** |
||
32 | * @var QueuedMessage |
||
33 | */ |
||
34 | private $message; |
||
35 | |||
36 | public function __construct(Container $container, ProducerInterface $producer, ConsumerInterface $consumer, QueuedMessage $message) |
||
44 | |||
45 | /** |
||
46 | * Get the number of times the job has been attempted. |
||
47 | * |
||
48 | * @return int |
||
49 | */ |
||
50 | public function attempts() |
||
54 | |||
55 | /** |
||
56 | * Get the raw body string for the job. |
||
57 | * |
||
58 | * @return string |
||
59 | */ |
||
60 | public function getRawBody() |
||
64 | |||
65 | public function delete() |
||
70 | |||
71 | public function release($delay = 0) |
||
86 | } |
||
87 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.