📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 13:25:51
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
php-flasher
/
flasher
/
Test
/
Constraint
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/php-flasher/flasher/Test/Constraint
🔄 Refresh
✏️
Editing: NotificationMessage.php
Writable
<?php declare(strict_types=1); namespace Flasher\Prime\Test\Constraint; use Flasher\Prime\EventDispatcher\Event\NotificationEvents; use Flasher\Prime\Notification\NotificationInterface; use PHPUnit\Framework\Constraint\Constraint; /** * Validates that at least one notification contains a specific message. */ final class NotificationMessage extends Constraint { public function __construct(private readonly string $expectedMessage) { } public function toString(): string { return \sprintf('contains a notification with message "%s"', $this->expectedMessage); } protected function matches(mixed $other): bool { if (!$other instanceof NotificationEvents) { return false; } foreach ($other->getEnvelopes() as $notification) { if (str_contains($notification->getMessage(), $this->expectedMessage)) { return true; } } return false; } protected function failureDescription(mixed $other): string { if (!$other instanceof NotificationEvents) { return 'Expected an instance of NotificationEvents but received a different type.'; } $foundMessages = array_map(function (NotificationInterface $notification) { return \sprintf('"%s"', $notification->getMessage()); }, $other->getEnvelopes()); if (empty($foundMessages)) { return \sprintf( 'Expected to find a notification with a message containing "%s", but no notifications were found.', $this->expectedMessage ); } return \sprintf( 'Expected to find a notification with a message containing "%s". Found messages: %s.', $this->expectedMessage, implode(', ', $foundMessages) ); } }
💾 Save Changes
❌ Cancel