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
:
RequestSetterInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WPForms\Vendor\CoreInterfaces\Core\Request; interface RequestSetterInterface extends RequestInterface { public function setHttpMethod(string $requestMethod) : void; public function appendPath(string $path) : void; public function addTemplate(string $key, $value) : void; public function addHeader(string $key, $value) : void; public function addEncodedFormParam(string $key, $value, $realValue) : void; public function addMultipartFormParam(string $key, $value) : void; public function addBodyParam($value, string $key = '') : void; public function setBodyFormat(string $format, callable $serializer) : void; public function setRetryOption(string $retryOption) : void; }