| 1 | <?php |
||
| 9 | class RequeueAbandonedJobMessageService |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var PsrContext |
||
| 13 | */ |
||
| 14 | private $context; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var AbandonedJobMessageStore |
||
| 18 | */ |
||
| 19 | private $abandonedJobMessageStore; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param PsrContext $context |
||
| 23 | * @param AbandonedJobMessageStore $abandonedJobMessageStore |
||
| 24 | */ |
||
| 25 | public function __construct( |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param int $abandonedJobMessageId |
||
| 35 | * @throws \Shippinno\Job\Domain\Model\AbandonedJobMessageNotFoundException |
||
| 36 | */ |
||
| 37 | public function execute(int $abandonedJobMessageId) |
||
| 48 | } |
||
| 49 |
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.