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
/
apimatic
/
core-interfaces
/
src
/
Core
/
Request
:
RequestMethod.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WPForms\Vendor\CoreInterfaces\Core\Request; interface RequestMethod { public const GET = "Get"; public const POST = "Post"; public const PUT = "Put"; public const PATCH = "Patch"; public const DELETE = "Delete"; public const HEAD = "Head"; }