관리-도구
편집 파일: BagInterface.php
<?php declare(strict_types=1); namespace Flasher\Prime\Storage\Bag; use Flasher\Prime\Notification\Envelope; interface BagInterface { /** * @return Envelope[] */ public function get(): array; /** * @param Envelope[] $envelopes */ public function set(array $envelopes): void; }