Blame view

vendor/alibabacloud/client/src/Traits/HttpTrait.php 2.5 KB
f0d6cde5   xu   vendor
1
2
3
4
<?php

namespace AlibabaCloud\Client\Traits;

0c34aba8   xu   更新阿里云短信接口
5
use AlibabaCloud\Client\Support\Arrays;
f0d6cde5   xu   vendor
6
use AlibabaCloud\Client\Filter\ClientFilter;
0c34aba8   xu   更新阿里云短信接口
7
use AlibabaCloud\Client\Exception\ClientException;
f0d6cde5   xu   vendor
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

/**
 * Trait HttpTrait
 *
 * @package AlibabaCloud\Client\Traits
 */
trait HttpTrait
{

    /**
     * @var array
     */
    public $options = [];

    /**
0c34aba8   xu   更新阿里云短信接口
23
     * @param int|float $seconds
f0d6cde5   xu   vendor
24
25
26
27
     *
     * @return $this
     * @throws ClientException
     */
0c34aba8   xu   更新阿里云短信接口
28
    public function timeout($seconds)
f0d6cde5   xu   vendor
29
    {
0c34aba8   xu   更新阿里云短信接口
30
        $this->options['timeout'] = ClientFilter::timeout($seconds);
f0d6cde5   xu   vendor
31
32
33
34
35

        return $this;
    }

    /**
0c34aba8   xu   更新阿里云短信接口
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
     * @param int $milliseconds
     *
     * @return $this
     * @throws ClientException
     */
    public function timeoutMilliseconds($milliseconds)
    {
        ClientFilter::milliseconds($milliseconds);
        $seconds = $milliseconds / 1000;

        return $this->timeout($seconds);
    }

    /**
     * @param int|float $seconds
f0d6cde5   xu   vendor
51
52
53
54
     *
     * @return $this
     * @throws ClientException
     */
0c34aba8   xu   更新阿里云短信接口
55
    public function connectTimeout($seconds)
f0d6cde5   xu   vendor
56
    {
0c34aba8   xu   更新阿里云短信接口
57
        $this->options['connect_timeout'] = ClientFilter::connectTimeout($seconds);
f0d6cde5   xu   vendor
58
59
60
61
62

        return $this;
    }

    /**
0c34aba8   xu   更新阿里云短信接口
63
64
65
66
67
68
69
70
71
72
73
74
75
76
     * @param int $milliseconds
     *
     * @return $this
     * @throws ClientException
     */
    public function connectTimeoutMilliseconds($milliseconds)
    {
        ClientFilter::milliseconds($milliseconds);
        $seconds = $milliseconds / 1000;

        return $this->connectTimeout($seconds);
    }

    /**
f0d6cde5   xu   vendor
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
     * @param bool $debug
     *
     * @return $this
     */
    public function debug($debug)
    {
        $this->options['debug'] = $debug;

        return $this;
    }

    /**
     * @codeCoverageIgnore
     *
     * @param array $cert
     *
     * @return $this
     */
    public function cert($cert)
    {
        $this->options['cert'] = $cert;

        return $this;
    }

    /**
     * @codeCoverageIgnore
     *
     * @param array|string $proxy
     *
     * @return $this
     */
    public function proxy($proxy)
    {
        $this->options['proxy'] = $proxy;

        return $this;
    }

    /**
     * @param mixed $verify
     *
     * @return $this
     */
    public function verify($verify)
    {
        $this->options['verify'] = $verify;

        return $this;
    }

    /**
     * @param array $options
     *
     * @return $this
     */
    public function options(array $options)
    {
        if ($options !== []) {
0c34aba8   xu   更新阿里云短信接口
136
            $this->options = Arrays::merge([$this->options, $options]);
f0d6cde5   xu   vendor
137
138
139
140
141
        }

        return $this;
    }
}