public function toString(): string
{ return 'is queued';
} /**
* @param MessageEvent $event
*/
protected function matches($event): bool
{ return $event->
isQueued();
} /**
* @param MessageEvent $event
*/
protected function failureDescription($event): string
{ return 'the Notification '.
$this->
toString();
}}