📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:09:55
📂
/ (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: NotificationInterface.php
Writable
<?php declare(strict_types=1); namespace Flasher\Prime\Notification; interface NotificationInterface { public function getTitle(): string; public function setTitle(string $title): void; public function getMessage(): string; public function setMessage(string $message): void; public function getType(): string; public function setType(string $type): void; /** * @return array<string, mixed> */ public function getOptions(): array; /** * @param array<string, mixed> $options */ public function setOptions(array $options): void; public function getOption(string $name, mixed $default = null): mixed; public function setOption(string $name, mixed $value): void; public function unsetOption(string $name): void; /** * @return array{ * title: string, * message: string, * type: string, * options: array<string, mixed>, * } */ public function toArray(): array; }
💾 Save Changes
❌ Cancel