芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/public_html/vendor/php-flasher/flasher/Storage/Bag/ArrayBag.php
*/ namespace Flasher\Prime\Storage\Bag; use Flasher\Prime\Notification\Envelope; final class ArrayBag implements BagInterface { /** * @var Envelope[] */ private $envelopes = array(); /** * {@inheritDoc} */ public function get() { return $this->envelopes; } /** * {@inheritDoc} */ public function set(array $envelopes) { $this->envelopes = $envelopes; } }