Просмотр файла sdark.mobi/vendor/guzzle/guzzle/tests/Guzzle/Tests/Mock/CustomResponseModel.php

Размер файла: 423B
<?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;
    }
}