We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2506c68 commit f34aa71Copy full SHA for f34aa71
src/Listener/FailedJobsListener.php
@@ -16,7 +16,6 @@
16
*/
17
namespace Cake\Queue\Listener;
18
19
-use Cake\Event\EventInterface;
20
use Cake\Event\EventListenerInterface;
21
use Cake\ORM\Exception\PersistenceFailedException;
22
use Cake\ORM\Locator\LocatorAwareTrait;
@@ -39,10 +38,10 @@ public function implementedEvents(): array
39
38
}
40
41
/**
42
- * @param \Cake\Event\EventInterface $event EventInterface
+ * @param object $event EventInterface.
43
* @return void
44
45
- public function storeFailedJob(EventInterface $event): void
+ public function storeFailedJob($event): void
46
{
47
/** @var \Cake\Queue\Job\Message $jobMessage */
48
$jobMessage = $event->getSubject();
0 commit comments