18 lines
287 B
PHP
18 lines
287 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace App\Constants;
|
||
|
||
use Hyperf\Constants\AbstractConstants;
|
||
use Hyperf\Constants\Annotation\Constants;
|
||
|
||
#[Constants]
|
||
class ErrorCode extends AbstractConstants
|
||
{
|
||
/**
|
||
* @Message("Server Error!")
|
||
*/
|
||
const int SERVER_ERROR = 500;
|
||
}
|