123456789101112131415161718192021222324 |
- <?php
- namespace App\Repositories\Enums;
- enum BrowserConfigFiledEnum:string
- {
- case OPEN_BROWSER_NOTIFICATION = "browser_notification";
- public static function checkRules(): array
- {
- return [
- "browser_notification" => "in:on,off",
-
- "polling_time" => "nullable|numeric",
- ];
- }
- }
|