You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
826 B
43 lines
826 B
<?php
|
|
|
|
namespace AlibabaCloud\Client\Resolver;
|
|
|
|
use AlibabaCloud\Client\AlibabaCloud;
|
|
use AlibabaCloud\Client\Exception\ClientException;
|
|
use AlibabaCloud\Client\Request\RoaRequest;
|
|
use ReflectionClass;
|
|
use ReflectionException;
|
|
|
|
/**
|
|
* Class Roa
|
|
*
|
|
* @codeCoverageIgnore
|
|
* @package AlibabaCloud\Client\Resolver
|
|
*/
|
|
abstract class Roa extends RoaRequest
|
|
{
|
|
use ActionResolverTrait;
|
|
use CallTrait;
|
|
|
|
/**
|
|
* @param array $options
|
|
*
|
|
* @throws ReflectionException
|
|
* @throws ClientException
|
|
*/
|
|
public function __construct(array $options = [])
|
|
{
|
|
parent::__construct($options);
|
|
|
|
$this->resolveActionName();
|
|
$this->appendSdkUA();
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
private function ¶meterPosition()
|
|
{
|
|
return $this->pathParameters;
|
|
}
|
|
}
|
|
|