爬虫开发
This commit is contained in:
14
app/Enums/CrawlAlertSeverity.php
Normal file
14
app/Enums/CrawlAlertSeverity.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Enums;
|
||||
|
||||
enum CrawlAlertSeverity: string
|
||||
{
|
||||
case Info = 'info';
|
||||
case Warning = 'warning';
|
||||
case Error = 'error';
|
||||
case Critical = 'critical';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user