f0d6cde5
xu
vendor
|
1
2
3
4
5
|
<?php
namespace AlibabaCloud\Client\Traits;
use AlibabaCloud\Client\AlibabaCloud;
|
f0d6cde5
xu
vendor
|
6
|
use AlibabaCloud\Client\Filter\Filter;
|
f0d6cde5
xu
vendor
|
7
|
use AlibabaCloud\Client\Request\UserAgent;
|
0c34aba8
xu
更新阿里云短信接口
|
8
9
10
|
use AlibabaCloud\Client\Request\RpcRequest;
use AlibabaCloud\Client\Request\RoaRequest;
use AlibabaCloud\Client\Exception\ClientException;
|
f0d6cde5
xu
vendor
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/**
* Trait RequestTrait
*
* @package AlibabaCloud\Client\Traits
*
* @mixin AlibabaCloud
*/
trait RequestTrait
{
/**
* @param string $name
* @param string $value
*
* @throws ClientException
*/
public static function appendUserAgent($name, $value)
{
Filter::name($name);
Filter::value($value);
UserAgent::append($name, $value);
}
/**
* @param array $userAgent
*/
public static function withUserAgent(array $userAgent)
{
UserAgent::with($userAgent);
}
/**
|
f0d6cde5
xu
vendor
|
44
45
46
47
|
* @param array $options
*
* @return RpcRequest
* @throws ClientException
|
0c34aba8
xu
更新阿里云短信接口
|
48
49
|
* @deprecated
* @codeCoverageIgnore
|
f0d6cde5
xu
vendor
|
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
*/
public static function rpcRequest(array $options = [])
{
return self::rpc($options);
}
/**
* @param array $options
*
* @return RpcRequest
* @throws ClientException
*/
public static function rpc(array $options = [])
{
return new RpcRequest($options);
}
/**
|
f0d6cde5
xu
vendor
|
68
69
70
71
|
* @param array $options
*
* @return RoaRequest
* @throws ClientException
|
0c34aba8
xu
更新阿里云短信接口
|
72
73
|
* @deprecated
* @codeCoverageIgnore
|
f0d6cde5
xu
vendor
|
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
*/
public static function roaRequest(array $options = [])
{
return self::roa($options);
}
/**
* @param array $options
*
* @return RoaRequest
* @throws ClientException
*/
public static function roa(array $options = [])
{
return new RoaRequest($options);
}
}
|