mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 02:08:40 +00:00
36 lines
855 B
PHP
36 lines
855 B
PHP
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.1
|
|
*
|
|
* @package phpOMS\Message\Http
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link http://website.orange-management.de
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\Message\Http;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Request method enum.
|
|
*
|
|
* @package phpOMS\Message\Http
|
|
* @license OMS License 1.0
|
|
* @link http://website.orange-management.de
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class RequestMethod extends Enum
|
|
{
|
|
/* public */ const GET = 'GET'; /* GET */
|
|
/* public */ const POST = 'POST'; /* POST */
|
|
/* public */ const PUT = 'PUT'; /* PUT */
|
|
/* public */ const DELETE = 'DELETE'; /* DELETE */
|
|
/* public */ const HEAD = 'HEAD'; /* HEAD */
|
|
/* public */ const TRACE = 'TRACE'; /* TRACE */
|
|
}
|