EVOLUTION-MANAGER
Edit File: RequestSerializerInterface.php
<?php namespace DuplicatorPro\Guzzle\Service\Command; use DuplicatorPro\Guzzle\Http\Message\RequestInterface; use DuplicatorPro\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); }