📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:11:07
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
php-flasher
/
flasher
/
Notification
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/php-flasher/flasher/Notification
🔄 Refresh
✏️
Editing: NotificationBuilder.php
Writable
<?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; } }
💾 Save Changes
❌ Cancel