Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
updraftplus
/
vendor
/
guzzle
/
guzzle
/
src
/
Guzzle
/
Service
/
Command
:
RequestSerializerInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Guzzle\Service\Command; use Guzzle\Http\Message\RequestInterface; use Guzzle\Service\Command\CommandInterface; /** * Translates command options and operation parameters into a request object */ interface RequestSerializerInterface { /** * Create a request for a command * * @param CommandInterface $command Command that will own the request * * @return RequestInterface */ public function prepare(CommandInterface $command); }