$command
$command :
fromCommand(\Guzzle\Service\Command\OperationCommand $command) : self
Create a response model object from a completed command
\Guzzle\Service\Command\OperationCommand | $command | That serialized the request |
<?php
namespace Guzzle\Tests\Mock;
use Guzzle\Service\Command\ResponseClassInterface;
use Guzzle\Service\Command\OperationCommand;
class CustomResponseModel implements ResponseClassInterface
{
public $command;
public static function fromCommand(OperationCommand $command)
{
return new self($command);
}
public function __construct($command)
{
$this->command = $command;
}
}