You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
321 B
19 lines
321 B
<?php
|
|
|
|
namespace IQBall\Core\Http;
|
|
|
|
/**
|
|
* Utility class to define constants of used http codes
|
|
*/
|
|
class HttpCodes {
|
|
public const OK = 200;
|
|
public const FOUND = 302;
|
|
public const BAD_REQUEST = 400;
|
|
public const UNAUTHORIZED = 401;
|
|
|
|
public const FORBIDDEN = 403;
|
|
|
|
public const NOT_FOUND = 404;
|
|
|
|
}
|