Blame view

vendor/alibabacloud/client/src/Traits/RequestTrait.php 1.8 KB
310f6425   曹明   1.完善短信提示“提取码”功能。
1
2
3
4
5
6
7
8
9
10
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?php

namespace AlibabaCloud\Client\Traits;

use AlibabaCloud\Client\AlibabaCloud;
use AlibabaCloud\Client\Exception\ClientException;
use AlibabaCloud\Client\Filter\Filter;
use AlibabaCloud\Client\Request\RoaRequest;
use AlibabaCloud\Client\Request\RpcRequest;
use AlibabaCloud\Client\Request\UserAgent;

/**
 * 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);
    }

    /**
     * @deprecated
     * @codeCoverageIgnore
     *
     * @param array $options
     *
     * @return RpcRequest
     * @throws ClientException
     */
    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);
    }

    /**
     * @deprecated
     * @codeCoverageIgnore
     *
     * @param array $options
     *
     * @return RoaRequest
     * @throws ClientException
     */
    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);
    }
}