Files
ai-web/app/Enums/CrawlAlertSeverity.php
cjd 260460df03
Some checks failed
Tests / PHP 8.2 (push) Has been cancelled
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled
爬虫开发
2026-02-18 12:56:36 +08:00

15 lines
204 B
PHP

<?php
declare(strict_types=1);
namespace App\Enums;
enum CrawlAlertSeverity: string
{
case Info = 'info';
case Warning = 'warning';
case Error = 'error';
case Critical = 'critical';
}