📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 11:04:20
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
php-flasher
/
flasher
/
EventDispatcher
/
Event
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/php-flasher/flasher/EventDispatcher/Event
🔄 Refresh
✏️
Editing: NotificationEvents.php
Writable
<?php declare(strict_types=1); namespace Flasher\Prime\EventDispatcher\Event; use Flasher\Prime\Notification\Envelope; /** * @internal */ final class NotificationEvents { /** @var Envelope[] */ private array $envelopes = []; public function add(Envelope ...$notifications): void { foreach ($notifications as $notification) { $this->addEnvelope($notification); } } public function addEnvelope(Envelope $notification): void { $this->envelopes[] = $notification; } /** * @return Envelope[] */ public function getEnvelopes(): array { return $this->envelopes; } }
💾 Save Changes
❌ Cancel