Your IP : 3.145.176.212


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/main/lib/web/http/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/main/lib/web/http/method.php

<?php

/**
 * Bitrix Framework
 * @package bitrix
 * @subpackage main
 * @copyright 2001-2022 Bitrix
 */

namespace Bitrix\Main\Web\Http;

class Method
{
	public const GET = 'GET';
	public const POST = 'POST';
	public const PUT = 'PUT';
	public const HEAD = 'HEAD';
	public const PATCH = 'PATCH';
	public const DELETE = 'DELETE';
	public const OPTIONS = 'OPTIONS';
}