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.
Application-Web/src/HttpCodes.php

14 lines
248 B

<?php
namespace App;
/**
* Utility class to define constants of used http codes
*/
class HttpCodes {
public const OK = 200;
public const BAD_REQUEST = 400;
public const NOT_FOUND = 404;
public const PRECONDITION_FAILED = 412;
}