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
:
RequestInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WPForms\Vendor\CoreInterfaces\Core\Request; interface RequestInterface { public function getHttpMethod() : string; public function getQueryUrl() : string; /** * @return array<string,mixed> */ public function getHeaders() : array; /** * @return array<string,mixed> */ public function getParameters() : array; /** * @return array<string,mixed> */ public function getEncodedParameters() : array; /** * @return array<string,mixed> */ public function getMultipartParameters() : array; public function getBody(); public function getRetryOption() : string; public function convert(); public function toApiException(string $message); }