📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:49:50
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
php-flasher
/
flasher
/
Factory
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/php-flasher/flasher/Factory
🔄 Refresh
✏️
Editing: NotificationFactory.php
Writable
<?php declare(strict_types=1); namespace Flasher\Prime\Factory; use Flasher\Prime\Storage\StorageManagerInterface; use Flasher\Prime\Support\Traits\ForwardsCalls; /** * @mixin \Flasher\Prime\Notification\NotificationBuilderInterface */ abstract class NotificationFactory implements NotificationFactoryInterface { use ForwardsCalls; public function __construct(protected StorageManagerInterface $storageManager, protected ?string $plugin = null) { } /** * @param mixed[] $parameters */ public function __call(string $method, array $parameters): mixed { return $this->forwardCallTo($this->createNotificationBuilder(), $method, $parameters); } }
💾 Save Changes
❌ Cancel