class FailedMessageEvent
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- class \Symfony\Contracts\EventDispatcher\Event implements \Psr\EventDispatcher\StoppableEventInterface
- class \Symfony\Component\Mailer\Event\FailedMessageEvent extends \Symfony\Contracts\EventDispatcher\Event
Expanded class hierarchy of FailedMessageEvent
1 file declares its use of FailedMessageEvent
- AbstractTransport.php in vendor/
symfony/ mailer/ Transport/ AbstractTransport.php
File
-
vendor/
symfony/ mailer/ Event/ FailedMessageEvent.php, line 20
Namespace
Symfony\Component\Mailer\EventView source
final class FailedMessageEvent extends Event {
public function __construct(RawMessage $message, \Throwable $error) {
}
public function getMessage() : RawMessage {
return $this->message;
}
public function getError() : \Throwable {
return $this->error;
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
Event::$propagationStopped | private | property | |||
Event::isPropagationStopped | public | function | Is propagation stopped? | Overrides StoppableEventInterface::isPropagationStopped | |
Event::stopPropagation | public | function | Stops the propagation of the event to further event listeners. | 1 | |
FailedMessageEvent::getError | public | function | |||
FailedMessageEvent::getMessage | public | function | |||
FailedMessageEvent::__construct | public | function |