京东云
This commit is contained in:
35
vendor/jdcloud-api/jdcloud-sdk-php/src/Api/Parser/AbstractParser.php
vendored
Normal file
35
vendor/jdcloud-api/jdcloud-sdk-php/src/Api/Parser/AbstractParser.php
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
namespace Jdcloud\Api\Parser;
|
||||
|
||||
use Jdcloud\Api\Service;
|
||||
use Jdcloud\CommandInterface;
|
||||
use Jdcloud\ResultInterface;
|
||||
use Psr\Http\Message\ResponseInterface;
|
||||
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
abstract class AbstractParser
|
||||
{
|
||||
/** @var \Jdcloud\Api\Service Representation of the service API*/
|
||||
protected $api;
|
||||
|
||||
/**
|
||||
* @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
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user