1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33:
<?php
namespace Guzzle\Tests\Service\Mock\Command;
use Guzzle\Service\Description\Operation;
class MockCommand extends \Guzzle\Service\Command\AbstractCommand
{
protected function createOperation()
{
return new Operation(array(
'name' => get_called_class() == __CLASS__ ? 'mock_command' : 'sub.sub',
'httpMethod' => 'POST',
'parameters' => array(
'test' => array(
'default' => 123,
'required' => true,
'doc' => 'Test argument'
),
'_internal' => array(
'default' => 'abc'
),
'foo' => array('filters' => array('strtoupper'))
)
));
}
protected function build()
{
$this->request = $this->client->createRequest();
}
}