/
home
/
obinna
/
html
/
mixchief_app
/
vendor
/
symfony
/
notifier
/
Transport
/
Upload File
HOME
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Notifier\Transport; use Symfony\Component\EventDispatcher\Event; use Symfony\Component\EventDispatcher\LegacyEventDispatcherProxy; use Symfony\Component\Notifier\Event\MessageEvent; use Symfony\Component\Notifier\Message\MessageInterface; use Symfony\Contracts\EventDispatcher\EventDispatcherInterface; /** * @author Fabien Potencier <fabien@symfony.com> * * @experimental in 5.1 */ class NullTransport implements TransportInterface { private $dispatcher; public function __construct(EventDispatcherInterface $dispatcher = null) { $this->dispatcher = class_exists(Event::class) ? LegacyEventDispatcherProxy::decorate($dispatcher) : $dispatcher; } public function send(MessageInterface $message): void { if (null !== $this->dispatcher) { $this->dispatcher->dispatch(new MessageEvent($message)); } } public function __toString(): string { return 'null'; } public function supports(MessageInterface $message): bool { return true; } }