for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Antidot\Queue\Event;
use JsonSerializable;
use Psr\EventDispatcher\StoppableEventInterface;
abstract class QueueEvent implements StoppableEventInterface, JsonSerializable
{
/** @var array<mixed> */
protected array $payload = [];
public function __construct()
}
/**
* @return array<mixed>
*/
public function payload(): array
return $this->payload;
public function isPropagationStopped(): bool
return false;
public function jsonSerialize(): array