Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Http
:
HttpMethod.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; }