ringfinger/backend/classes/core/ServerStatus.php
2020-08-23 12:37:39 +02:00

14 lines
245 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;
}