FestinHegre/vendor/symfony/notifier/Test/Constraint/NotificationTransportIsEqual.php

48 lines
1.1 KiB
PHP
Raw Normal View History

2024-09-26 17:26:04 +02:00
<?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\Test\Constraint;
use PHPUnit\Framework\Constraint\Constraint;
use Symfony\Component\Notifier\Message\MessageInterface;
/**
* @author Smaïne Milianni <smaine.milianni@gmail.com>
*/
final class NotificationTransportIsEqual extends Constraint
{
public function __construct(
private ?string $expectedText,
) {
}
public function toString(): string
{
return sprintf('is "%s"', $this->expectedText);
}
/**
* @param MessageInterface $message
*/
protected function matches($message): bool
{
return $message->getTransport() === $this->expectedText;
}
/**
* @param MessageInterface $message
*/
protected function failureDescription($message): string
{
return 'the Notification transport '.$this->toString();
}
}