Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
39 | 5 | public function __invoke(AMQPMessage $message) |
|
40 | { |
||
41 | 5 | $convertedMessage = $this->getMessageMapper()->toMessage($message); |
|
42 | 5 | $ret = call_user_func($this->callback, $convertedMessage, $this->queue); |
|
43 | 5 | if (false === $ret) { |
|
44 | 4 | $this->queue->cancel($message->delivery_info['consumer_tag']); |
|
|
|||
45 | } |
||
46 | 5 | return $ret; |
|
47 | } |
||
48 | |||
70 |
It seems like the type of the argument is not accepted by the function/method which you are calling.
In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.
We suggest to add an explicit type cast like in the following example: