Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
public_html
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Http
/
Editing: HttpMethod.php
<?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; }
Save
Cancel