This commit is contained in:
mkm 2024-02-28 16:51:38 +08:00
parent 4b9c717ec6
commit baeefd5c35
7897 changed files with 162168 additions and 334250 deletions

0
vendor/adbario/php-dot-notation/LICENSE.md vendored Executable file → Normal file
View File

6
vendor/adbario/php-dot-notation/composer.json vendored Executable file → Normal file
View File

@ -11,12 +11,12 @@
} }
], ],
"require": { "require": {
"php": "^5.5 || ^7.0 || ^8.0", "php": ">=5.5",
"ext-json": "*" "ext-json": "*"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5", "phpunit/phpunit": "^4.0|^5.0|^6.0",
"squizlabs/php_codesniffer": "^3.6" "squizlabs/php_codesniffer": "^3.0"
}, },
"autoload": { "autoload": {
"files": [ "files": [

34
vendor/adbario/php-dot-notation/src/Dot.php vendored Executable file → Normal file
View File

@ -29,25 +29,14 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
*/ */
protected $items = []; protected $items = [];
/**
* The delimiter (alternative to a '.') to be used.
*
* @var string
*/
protected $delimiter = '.';
/** /**
* Create a new Dot instance * Create a new Dot instance
* *
* @param mixed $items * @param mixed $items
* @param string $delimiter
*/ */
public function __construct($items = [], $delimiter = '.') public function __construct($items = [])
{ {
$this->items = $this->getArrayItems($items); $this->items = $this->getArrayItems($items);
$this->delimiter = strlen($delimiter) ? $delimiter : '.';
} }
/** /**
@ -115,7 +104,7 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
} }
$items = &$this->items; $items = &$this->items;
$segments = explode($this->delimiter, $key); $segments = explode('.', $key);
$lastSegment = array_pop($segments); $lastSegment = array_pop($segments);
foreach ($segments as $segment) { foreach ($segments as $segment) {
@ -159,10 +148,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
$items = $this->items; $items = $this->items;
} }
if (!func_num_args()) {
$delimiter = $this->delimiter;
}
foreach ($items as $key => $value) { foreach ($items as $key => $value) {
if (is_array($value) && !empty($value)) { if (is_array($value) && !empty($value)) {
$flatten = array_merge( $flatten = array_merge(
@ -194,13 +179,13 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
return $this->items[$key]; return $this->items[$key];
} }
if (strpos($key, $this->delimiter) === false) { if (strpos($key, '.') === false) {
return $default; return $default;
} }
$items = $this->items; $items = $this->items;
foreach (explode($this->delimiter, $key) as $segment) { foreach (explode('.', $key) as $segment) {
if (!is_array($items) || !$this->exists($items, $segment)) { if (!is_array($items) || !$this->exists($items, $segment)) {
return $default; return $default;
} }
@ -249,7 +234,7 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
continue; continue;
} }
foreach (explode($this->delimiter, $key) as $segment) { foreach (explode('.', $key) as $segment) {
if (!is_array($items) || !$this->exists($items, $segment)) { if (!is_array($items) || !$this->exists($items, $segment)) {
return false; return false;
} }
@ -461,7 +446,7 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
$items = &$this->items; $items = &$this->items;
foreach (explode($this->delimiter, $keys) as $key) { foreach (explode('.', $keys) as $key) {
if (!isset($items[$key]) || !is_array($items[$key])) { if (!isset($items[$key]) || !is_array($items[$key])) {
$items[$key] = []; $items[$key] = [];
} }
@ -522,7 +507,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* @param int|string $key * @param int|string $key
* @return bool * @return bool
*/ */
#[\ReturnTypeWillChange]
public function offsetExists($key) public function offsetExists($key)
{ {
return $this->has($key); return $this->has($key);
@ -534,7 +518,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* @param int|string $key * @param int|string $key
* @return mixed * @return mixed
*/ */
#[\ReturnTypeWillChange]
public function offsetGet($key) public function offsetGet($key)
{ {
return $this->get($key); return $this->get($key);
@ -546,7 +529,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* @param int|string|null $key * @param int|string|null $key
* @param mixed $value * @param mixed $value
*/ */
#[\ReturnTypeWillChange]
public function offsetSet($key, $value) public function offsetSet($key, $value)
{ {
if (is_null($key)) { if (is_null($key)) {
@ -563,7 +545,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* *
* @param int|string $key * @param int|string $key
*/ */
#[\ReturnTypeWillChange]
public function offsetUnset($key) public function offsetUnset($key)
{ {
$this->delete($key); $this->delete($key);
@ -581,7 +562,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* @param int|string|null $key * @param int|string|null $key
* @return int * @return int
*/ */
#[\ReturnTypeWillChange]
public function count($key = null) public function count($key = null)
{ {
return count($this->get($key)); return count($this->get($key));
@ -598,7 +578,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* *
* @return \ArrayIterator * @return \ArrayIterator
*/ */
#[\ReturnTypeWillChange]
public function getIterator() public function getIterator()
{ {
return new ArrayIterator($this->items); return new ArrayIterator($this->items);
@ -615,7 +594,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* *
* @return array * @return array
*/ */
#[\ReturnTypeWillChange]
public function jsonSerialize() public function jsonSerialize()
{ {
return $this->items; return $this->items;

9
vendor/adbario/php-dot-notation/src/helpers.php vendored Executable file → Normal file
View File

@ -11,14 +11,13 @@ use Adbar\Dot;
if (! function_exists('dot')) { if (! function_exists('dot')) {
/** /**
* Create a new Dot object with the given items and optional delimiter * Create a new Dot object with the given items
* *
* @param mixed $items * @param mixed $items
* @param string $delimiter
* @return \Adbar\Dot * @return \Adbar\Dot
*/ */
function dot($items, $delimiter = '.') function dot($items)
{ {
return new Dot($items, $delimiter); return new Dot($items);
} }
} }

0
vendor/alibabacloud/credentials/CHANGELOG.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/CONTRIBUTING.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/LICENSE.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/NOTICE.md vendored Executable file → Normal file
View File

2
vendor/alibabacloud/credentials/README-zh-CN.md vendored Executable file → Normal file
View File

@ -149,7 +149,7 @@ $rsaKeyPair->getPrivateKey();
use AlibabaCloud\Credentials\Credential; use AlibabaCloud\Credentials\Credential;
$bearerToken = new Credential([ $bearerToken = new Credential([
'type' => 'bearer', 'type' => 'bearer_token',
'bearer_token' => '<bearer_token>', 'bearer_token' => '<bearer_token>',
]); ]);
$bearerToken->getBearerToken(); $bearerToken->getBearerToken();

2
vendor/alibabacloud/credentials/README.md vendored Executable file → Normal file
View File

@ -150,7 +150,7 @@ If credential is required by the Cloud Call Centre (CCC), please apply for Beare
use AlibabaCloud\Credentials\Credential; use AlibabaCloud\Credentials\Credential;
$bearerToken = new Credential([ $bearerToken = new Credential([
'type' => 'bearer', 'type' => 'bearer_token',
'bearer_token' => '<bearer_token>', 'bearer_token' => '<bearer_token>',
]); ]);
$bearerToken->getBearerToken(); $bearerToken->getBearerToken();

0
vendor/alibabacloud/credentials/SECURITY.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/UPGRADING.md vendored Executable file → Normal file
View File

7
vendor/alibabacloud/credentials/composer.json vendored Executable file → Normal file
View File

@ -47,7 +47,7 @@
"ext-sockets": "*", "ext-sockets": "*",
"drupal/coder": "^8.3", "drupal/coder": "^8.3",
"symfony/dotenv": "^3.4", "symfony/dotenv": "^3.4",
"phpunit/phpunit": "^5.7|^6.6|^7.5", "phpunit/phpunit": "^4.8.35|^5.4.3",
"monolog/monolog": "^1.24", "monolog/monolog": "^1.24",
"composer/composer": "^1.8", "composer/composer": "^1.8",
"mikey179/vfsstream": "^1.6", "mikey179/vfsstream": "^1.6",
@ -68,10 +68,7 @@
}, },
"config": { "config": {
"preferred-install": "dist", "preferred-install": "dist",
"optimize-autoloader": true, "optimize-autoloader": true
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}, },
"minimum-stability": "dev", "minimum-stability": "dev",
"prefer-stable": true, "prefer-stable": true,

0
vendor/alibabacloud/credentials/src/AccessKeyCredential.php vendored Executable file → Normal file
View File

8
vendor/alibabacloud/credentials/src/BearerTokenCredential.php vendored Executable file → Normal file
View File

@ -18,13 +18,13 @@ class BearerTokenCredential implements CredentialsInterface
/** /**
* BearerTokenCredential constructor. * BearerTokenCredential constructor.
* *
* @param $bearer_token * @param $bearerToken
*/ */
public function __construct($bearer_token) public function __construct($bearerToken)
{ {
Filter::bearerToken($bearer_token); Filter::bearerToken($bearerToken);
$this->bearerToken = $bearer_token; $this->bearerToken = $bearerToken;
} }
/** /**

1
vendor/alibabacloud/credentials/src/Credential.php vendored Executable file → Normal file
View File

@ -35,7 +35,6 @@ class Credential
'ecs_ram_role' => EcsRamRoleCredential::class, 'ecs_ram_role' => EcsRamRoleCredential::class,
'ram_role_arn' => RamRoleArnCredential::class, 'ram_role_arn' => RamRoleArnCredential::class,
'rsa_key_pair' => RsaKeyPairCredential::class, 'rsa_key_pair' => RsaKeyPairCredential::class,
'bearer' => BearerTokenCredential::class,
]; ];
/** /**

0
vendor/alibabacloud/credentials/src/Credential/Config.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/Credentials.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/CredentialsInterface.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/EcsRamRoleCredential.php vendored Executable file → Normal file
View File

4
vendor/alibabacloud/credentials/src/Filter.php vendored Executable file → Normal file
View File

@ -35,11 +35,11 @@ class Filter
public static function bearerToken($bearerToken) public static function bearerToken($bearerToken)
{ {
if (!is_string($bearerToken)) { if (!is_string($bearerToken)) {
throw new InvalidArgumentException('bearer_token must be a string'); throw new InvalidArgumentException('Bearer Token must be a string');
} }
if ($bearerToken === '') { if ($bearerToken === '') {
throw new InvalidArgumentException('bearer_token cannot be empty'); throw new InvalidArgumentException('Bearer Token cannot be empty');
} }
return $bearerToken; return $bearerToken;

0
vendor/alibabacloud/credentials/src/Helper.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/MockTrait.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/Providers/ChainProvider.php vendored Executable file → Normal file
View File

View File

0
vendor/alibabacloud/credentials/src/Providers/Provider.php vendored Executable file → Normal file
View File

View File

View File

0
vendor/alibabacloud/credentials/src/RamRoleArnCredential.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/Request/AssumeRole.php vendored Executable file → Normal file
View File

View File

0
vendor/alibabacloud/credentials/src/Request/Request.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php vendored Executable file → Normal file
View File

View File

0
vendor/alibabacloud/credentials/src/Signature/ShaHmac1Signature.php vendored Executable file → Normal file
View File

View File

View File

View File

0
vendor/alibabacloud/credentials/src/StsCredential.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/.gitignore vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/.php_cs.dist vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/README-CN.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/README.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/autoload.php vendored Executable file → Normal file
View File

7
vendor/alibabacloud/darabonba-openapi/composer.json vendored Executable file → Normal file
View File

@ -11,11 +11,10 @@
], ],
"require": { "require": {
"php": ">5.5", "php": ">5.5",
"alibabacloud/tea-utils": "^0.2.17", "alibabacloud/tea-utils": "^0.2.0",
"alibabacloud/credentials": "^1.1", "alibabacloud/credentials": "^1.1",
"alibabacloud/openapi-util": "^0.1.10|^0.2.1", "alibabacloud/openapi-util": "^0.1.10",
"alibabacloud/gateway-spi": "^1", "alibabacloud/gateway-spi": "^0.0.1"
"alibabacloud/tea-xml": "^0.2"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {

118
vendor/alibabacloud/darabonba-openapi/src/Models/Config.php vendored Executable file → Normal file
View File

@ -1,15 +1,14 @@
<?php <?php
// This file is auto-generated, don't edit it. Thanks. // This file is auto-generated, don't edit it. Thanks.
namespace Darabonba\OpenApi\Models; namespace Darabonba\OpenApi\Models;
use AlibabaCloud\Tea\Model;
use AlibabaCloud\Credentials\Credential; use AlibabaCloud\Credentials\Credential;
use AlibabaCloud\Tea\Model;
use Darabonba\OpenApi\Models\GlobalParameters;
/** /**
* Model for initing client * Model for initing client.
*/ */
class Config extends Model class Config extends Model
{ {
@ -38,13 +37,12 @@ class Config extends Model
'type' => '', 'type' => '',
'signatureVersion' => '', 'signatureVersion' => '',
'signatureAlgorithm' => '', 'signatureAlgorithm' => '',
'key' => '',
'cert' => '',
'ca' => '',
]; ];
public function validate() public function validate()
{ {
} }
public function toMap() public function toMap()
{ {
$res = []; $res = [];
@ -120,22 +118,13 @@ class Config extends Model
if (null !== $this->signatureAlgorithm) { if (null !== $this->signatureAlgorithm) {
$res['signatureAlgorithm'] = $this->signatureAlgorithm; $res['signatureAlgorithm'] = $this->signatureAlgorithm;
} }
if (null !== $this->globalParameters) {
$res['globalParameters'] = null !== $this->globalParameters ? $this->globalParameters->toMap() : null;
}
if (null !== $this->key) {
$res['key'] = $this->key;
}
if (null !== $this->cert) {
$res['cert'] = $this->cert;
}
if (null !== $this->ca) {
$res['ca'] = $this->ca;
}
return $res; return $res;
} }
/** /**
* @param array $map * @param array $map
*
* @return Config * @return Config
*/ */
public static function fromMap($map = []) public static function fromMap($map = [])
@ -213,212 +202,219 @@ class Config extends Model
if (isset($map['signatureAlgorithm'])) { if (isset($map['signatureAlgorithm'])) {
$model->signatureAlgorithm = $map['signatureAlgorithm']; $model->signatureAlgorithm = $map['signatureAlgorithm'];
} }
if (isset($map['globalParameters'])) {
$model->globalParameters = GlobalParameters::fromMap($map['globalParameters']);
}
if (isset($map['key'])) {
$model->key = $map['key'];
}
if (isset($map['cert'])) {
$model->cert = $map['cert'];
}
if (isset($map['ca'])) {
$model->ca = $map['ca'];
}
return $model; return $model;
} }
/** /**
* @description accesskey id * @description accesskey id
*
* @var string * @var string
*/ */
public $accessKeyId; public $accessKeyId;
/** /**
* @description accesskey secret * @description accesskey secret
*
* @var string * @var string
*/ */
public $accessKeySecret; public $accessKeySecret;
/** /**
* @description security token * @description security token
*
* @example a.txt * @example a.txt
*
* @var string * @var string
*/ */
public $securityToken; public $securityToken;
/** /**
* @description http protocol * @description http protocol
*
* @example http * @example http
*
* @var string * @var string
*/ */
public $protocol; public $protocol;
/** /**
* @description http method * @description http method
*
* @example GET * @example GET
*
* @var string * @var string
*/ */
public $method; public $method;
/** /**
* @description region id * @description region id
*
* @example cn-hangzhou * @example cn-hangzhou
*
* @var string * @var string
*/ */
public $regionId; public $regionId;
/** /**
* @description read timeout * @description read timeout
*
* @example 10 * @example 10
*
* @var int * @var int
*/ */
public $readTimeout; public $readTimeout;
/** /**
* @description connect timeout * @description connect timeout
*
* @example 10 * @example 10
*
* @var int * @var int
*/ */
public $connectTimeout; public $connectTimeout;
/** /**
* @description http proxy * @description http proxy
*
* @example http://localhost * @example http://localhost
*
* @var string * @var string
*/ */
public $httpProxy; public $httpProxy;
/** /**
* @description https proxy * @description https proxy
*
* @example https://localhost * @example https://localhost
*
* @var string * @var string
*/ */
public $httpsProxy; public $httpsProxy;
/** /**
* @description credential * @description credential
* @example *
* @example
*
* @var Credential * @var Credential
*/ */
public $credential; public $credential;
/** /**
* @description endpoint * @description endpoint
*
* @example cs.aliyuncs.com * @example cs.aliyuncs.com
*
* @var string * @var string
*/ */
public $endpoint; public $endpoint;
/** /**
* @description proxy white list * @description proxy white list
*
* @example http://localhost * @example http://localhost
*
* @var string * @var string
*/ */
public $noProxy; public $noProxy;
/** /**
* @description max idle conns * @description max idle conns
*
* @example 3 * @example 3
*
* @var int * @var int
*/ */
public $maxIdleConns; public $maxIdleConns;
/** /**
* @description network for endpoint * @description network for endpoint
*
* @example public * @example public
*
* @var string * @var string
*/ */
public $network; public $network;
/** /**
* @description user agent * @description user agent
*
* @example Alibabacloud/1 * @example Alibabacloud/1
*
* @var string * @var string
*/ */
public $userAgent; public $userAgent;
/** /**
* @description suffix for endpoint * @description suffix for endpoint
*
* @example aliyun * @example aliyun
*
* @var string * @var string
*/ */
public $suffix; public $suffix;
/** /**
* @description socks5 proxy * @description socks5 proxy
*
* @var string * @var string
*/ */
public $socks5Proxy; public $socks5Proxy;
/** /**
* @description socks5 network * @description socks5 network
*
* @example TCP * @example TCP
*
* @var string * @var string
*/ */
public $socks5NetWork; public $socks5NetWork;
/** /**
* @description endpoint type * @description endpoint type
*
* @example internal * @example internal
*
* @var string * @var string
*/ */
public $endpointType; public $endpointType;
/** /**
* @description OpenPlatform endpoint * @description OpenPlatform endpoint
*
* @example openplatform.aliyuncs.com * @example openplatform.aliyuncs.com
*
* @var string * @var string
*/ */
public $openPlatformEndpoint; public $openPlatformEndpoint;
/** /**
* @description credential type * @description credential type
*
* @example access_key * @example access_key
*
* @deprecated * @deprecated
*
* @var string * @var string
*/ */
public $type; public $type;
/** /**
* @description Signature Version * @description Signature Version
*
* @example v1 * @example v1
*
* @var string * @var string
*/ */
public $signatureVersion; public $signatureVersion;
/** /**
* @description Signature Algorithm * @description Signature Algorithm
*
* @example ACS3-HMAC-SHA256 * @example ACS3-HMAC-SHA256
*
* @var string * @var string
*/ */
public $signatureAlgorithm; public $signatureAlgorithm;
/**
* @description Global Parameters
* @var GlobalParameters
*/
public $globalParameters;
/**
* @description privite key for client certificate
* @example MIIEvQ
* @var string
*/
public $key;
/**
* @description client certificate
* @example -----BEGIN CERTIFICATE-----
xxx-----END CERTIFICATE-----
* @var string
*/
public $cert;
/**
* @description server certificate
* @example -----BEGIN CERTIFICATE-----
xxx-----END CERTIFICATE-----
* @var string
*/
public $ca;
} }

View File

@ -1,42 +0,0 @@
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace Darabonba\OpenApi\Models;
use AlibabaCloud\Tea\Model;
class GlobalParameters extends Model
{
public function validate()
{
}
public function toMap()
{
$res = [];
if (null !== $this->headers) {
$res['headers'] = $this->headers;
}
if (null !== $this->queries) {
$res['queries'] = $this->queries;
}
return $res;
}
/**
* @param array $map
* @return GlobalParameters
*/
public static function fromMap($map = [])
{
$model = new self();
if (isset($map['headers'])) {
$model->headers = $map['headers'];
}
if (isset($map['queries'])) {
$model->queries = $map['queries'];
}
return $model;
}
public $headers;
public $queries;
}

15
vendor/alibabacloud/darabonba-openapi/src/Models/OpenApiRequest.php vendored Executable file → Normal file
View File

@ -1,6 +1,7 @@
<?php <?php
// This file is auto-generated, don't edit it. Thanks. // This file is auto-generated, don't edit it. Thanks.
namespace Darabonba\OpenApi\Models; namespace Darabonba\OpenApi\Models;
use AlibabaCloud\Tea\Model; use AlibabaCloud\Tea\Model;
@ -10,6 +11,7 @@ class OpenApiRequest extends Model
public function validate() public function validate()
{ {
} }
public function toMap() public function toMap()
{ {
$res = []; $res = [];
@ -28,13 +30,13 @@ class OpenApiRequest extends Model
if (null !== $this->hostMap) { if (null !== $this->hostMap) {
$res['hostMap'] = $this->hostMap; $res['hostMap'] = $this->hostMap;
} }
if (null !== $this->endpointOverride) {
$res['endpointOverride'] = $this->endpointOverride;
}
return $res; return $res;
} }
/** /**
* @param array $map * @param array $map
*
* @return OpenApiRequest * @return OpenApiRequest
*/ */
public static function fromMap($map = []) public static function fromMap($map = [])
@ -55,11 +57,10 @@ class OpenApiRequest extends Model
if (isset($map['hostMap'])) { if (isset($map['hostMap'])) {
$model->hostMap = $map['hostMap']; $model->hostMap = $map['hostMap'];
} }
if (isset($map['endpointOverride'])) {
$model->endpointOverride = $map['endpointOverride'];
}
return $model; return $model;
} }
public $headers; public $headers;
public $query; public $query;
@ -69,6 +70,4 @@ class OpenApiRequest extends Model
public $stream; public $stream;
public $hostMap; public $hostMap;
public $endpointOverride;
} }

7
vendor/alibabacloud/darabonba-openapi/src/Models/Params.php vendored Executable file → Normal file
View File

@ -1,6 +1,7 @@
<?php <?php
// This file is auto-generated, don't edit it. Thanks. // This file is auto-generated, don't edit it. Thanks.
namespace Darabonba\OpenApi\Models; namespace Darabonba\OpenApi\Models;
use AlibabaCloud\Tea\Model; use AlibabaCloud\Tea\Model;
@ -18,6 +19,7 @@ class Params extends Model
Model::validateRequired('bodyType', $this->bodyType, true); Model::validateRequired('bodyType', $this->bodyType, true);
Model::validateRequired('reqBodyType', $this->reqBodyType, true); Model::validateRequired('reqBodyType', $this->reqBodyType, true);
} }
public function toMap() public function toMap()
{ {
$res = []; $res = [];
@ -48,10 +50,13 @@ class Params extends Model
if (null !== $this->style) { if (null !== $this->style) {
$res['style'] = $this->style; $res['style'] = $this->style;
} }
return $res; return $res;
} }
/** /**
* @param array $map * @param array $map
*
* @return Params * @return Params
*/ */
public static function fromMap($map = []) public static function fromMap($map = [])
@ -84,8 +89,10 @@ class Params extends Model
if (isset($map['style'])) { if (isset($map['style'])) {
$model->style = $map['style']; $model->style = $map['style'];
} }
return $model; return $model;
} }
/** /**
* @var string * @var string
*/ */

945
vendor/alibabacloud/darabonba-openapi/src/OpenApiClient.php vendored Executable file → Normal file

File diff suppressed because it is too large Load Diff

0
vendor/alibabacloud/dysmsapi-20170525/.gitignore vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/.php_cs.dist vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/ChangeLog.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/README-CN.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/README.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/autoload.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/composer.json vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/src/Dysmsapi.php vendored Executable file → Normal file
View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

Some files were not shown because too many files have changed in this diff Show More