14 lines
263 B
PHP
14 lines
263 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
class ServerStatus
|
||
|
{
|
||
|
public const OK = 200;
|
||
|
public const FORBIDDEN = 403;
|
||
|
public const UNAUTHORIZED = 401;
|
||
|
public const BAD_REQUEST = 400;
|
||
|
public const NOT_FOUND = 404;
|
||
|
public const INTERNAL_ERROR = 500;
|
||
|
}
|