관리-도구
편집 파일: NotificationBuilder.php
<?php declare(strict_types=1); namespace Flasher\Prime\Notification; use Flasher\Prime\Stamp\PluginStamp; use Flasher\Prime\Storage\StorageManagerInterface; use Flasher\Prime\Support\Traits\Macroable; abstract class NotificationBuilder implements NotificationBuilderInterface { use Macroable; use NotificationBuilderMethods; use NotificationMethodAliases; use NotificationStorageMethods; public function __construct(string|NotificationInterface $notification, StorageManagerInterface $storageManager) { if (\is_string($notification)) { $plugin = new PluginStamp($notification); $notification = Envelope::wrap(new Notification()); $notification->withStamp($plugin); } $envelope = Envelope::wrap($notification); $envelope->withStamp(new PluginStamp('flasher'), false); $this->envelope = $envelope; $this->storageManager = $storageManager; } }