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 QueuedMessage |
||
28 | */ |
||
29 | private $message; |
||
30 | |||
31 | public function __construct(Container $container, ProducerInterface $producer, QueuedMessage $message) |
||
37 | |||
38 | /** |
||
39 | * Get the number of times the job has been attempted. |
||
40 | * |
||
41 | * @return int |
||
42 | */ |
||
43 | public function attempts() |
||
47 | |||
48 | /** |
||
49 | * Get the raw body string for the job. |
||
50 | * |
||
51 | * @return string |
||
52 | */ |
||
53 | public function getRawBody() |
||
57 | |||
58 | public function delete() |
||
63 | |||
64 | public function release($delay = 0) |
||
78 | } |
||
79 |
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.