관리-도구
편집 파일: PostUpdateEvent.php
<?php declare(strict_types=1); namespace Flasher\Prime\EventDispatcher\Event; use Flasher\Prime\Notification\Envelope; final readonly class PostUpdateEvent { /** * @param Envelope[] $envelopes */ public function __construct(private array $envelopes) { } /** * @return Envelope[] */ public function getEnvelopes(): array { return $this->envelopes; } }