File "RequestSerializerInterface.php"
Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/backupbuddy/destinations/_s3lib2/Guzzle/Service/Command/RequestSerializerInterface.php
File size: 486 bytes
MIME-type: text/x-php
Charset: utf-8
<?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);
}