File "HttpMethod.php"
Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Http/HttpMethod.php
File size: 463 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare (strict_types=1);
namespace WPForms\Vendor\Square\Http;
use WPForms\Vendor\CoreInterfaces\Core\Request\RequestMethod;
/**
* HTTP Methods Enumeration
*/
class HttpMethod
{
public const GET = RequestMethod::GET;
public const POST = RequestMethod::POST;
public const PUT = RequestMethod::PUT;
public const PATCH = RequestMethod::PATCH;
public const DELETE = RequestMethod::DELETE;
public const HEAD = RequestMethod::HEAD;
}