mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-07-05 20:41:31 -07:00
* Simplifies & beautifies everything * Introduces a new Class system. * Errors are defaulted to AWS's handler. * New function names & more efficient handling. * Should fix a majority of the errors. Please read the README for more!
46 lines
1,006 B
PHP
46 lines
1,006 B
PHP
<?php
|
|
namespace Aws\Api\Parser;
|
|
|
|
use Aws\Api\Service;
|
|
use Aws\Api\StructureShape;
|
|
use Aws\CommandInterface;
|
|
use Aws\ResultInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
use Psr\Http\Message\StreamInterface;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
abstract class AbstractParser
|
|
{
|
|
/** @var \Aws\Api\Service Representation of the service API*/
|
|
protected $api;
|
|
|
|
/** @var callable */
|
|
protected $parser;
|
|
|
|
/**
|
|
* @param Service $api Service description.
|
|
*/
|
|
public function __construct(Service $api)
|
|
{
|
|
$this->api = $api;
|
|
}
|
|
|
|
/**
|
|
* @param CommandInterface $command Command that was executed.
|
|
* @param ResponseInterface $response Response that was received.
|
|
*
|
|
* @return ResultInterface
|
|
*/
|
|
abstract public function __invoke(
|
|
CommandInterface $command,
|
|
ResponseInterface $response
|
|
);
|
|
|
|
abstract public function parseMemberFromStream(
|
|
StreamInterface $stream,
|
|
StructureShape $member,
|
|
$response
|
|
);
|
|
}
|