1 | <?php |
||
15 | trait HTTPClientTrait{ |
||
16 | |||
17 | /** |
||
18 | * @var \chillerlan\HTTP\HTTPClientInterface |
||
19 | */ |
||
20 | private $http; |
||
21 | |||
22 | /** |
||
23 | * @param \chillerlan\HTTP\HTTPClientInterface $http |
||
24 | * |
||
25 | * @return $this |
||
26 | */ |
||
27 | protected function setHTTPClient(HTTPClientInterface $http){ |
||
32 | |||
33 | /** |
||
34 | * @param string $url |
||
35 | * @param array|null $params |
||
36 | * @param string|null $method |
||
37 | * @param null $body |
||
38 | * @param array|null $headers |
||
39 | * |
||
40 | * @return \chillerlan\HTTP\HTTPResponseInterface |
||
41 | */ |
||
42 | protected function httpRequest(string $url, array $params = null, string $method = null, $body = null, array $headers = null):HTTPResponseInterface{ |
||
45 | |||
46 | /** |
||
47 | * @param string $url |
||
48 | * @param array|null $params |
||
49 | * @param array|null $headers |
||
50 | * |
||
51 | * @return \chillerlan\HTTP\HTTPResponseInterface |
||
52 | */ |
||
53 | protected function httpDELETE(string $url, array $params = null, array $headers = null):HTTPResponseInterface{ |
||
56 | |||
57 | /** |
||
58 | * @param string $url |
||
59 | * @param array|null $params |
||
60 | * @param array|null $headers |
||
61 | * |
||
62 | * @return \chillerlan\HTTP\HTTPResponseInterface |
||
63 | */ |
||
64 | protected function httpGET(string $url, array $params = null, array $headers = null):HTTPResponseInterface{ |
||
67 | |||
68 | /** |
||
69 | * @param string $url |
||
70 | * @param array|null $params |
||
71 | * @param null $body |
||
72 | * @param array|null $headers |
||
73 | * |
||
74 | * @return \chillerlan\HTTP\HTTPResponseInterface |
||
75 | */ |
||
76 | protected function httpPATCH(string $url, array $params = null, $body = null, array $headers = null):HTTPResponseInterface{ |
||
79 | |||
80 | /** |
||
81 | * @param string $url |
||
82 | * @param array|null $params |
||
83 | * @param null $body |
||
84 | * @param array|null $headers |
||
85 | * |
||
86 | * @return \chillerlan\HTTP\HTTPResponseInterface |
||
87 | */ |
||
88 | protected function httpPOST(string $url, array $params = null, $body = null, array $headers = null):HTTPResponseInterface{ |
||
91 | |||
92 | /** |
||
93 | * @param string $url |
||
94 | * @param array|null $params |
||
95 | * @param null $body |
||
96 | * @param array|null $headers |
||
97 | * |
||
98 | * @return \chillerlan\HTTP\HTTPResponseInterface |
||
99 | */ |
||
100 | protected function httpPUT(string $url, array $params = null, $body = null, array $headers = null):HTTPResponseInterface{ |
||
103 | |||
104 | /** |
||
105 | * @param $params |
||
106 | * |
||
107 | * @return array |
||
108 | */ |
||
109 | protected function checkParams($params){ |
||
128 | |||
129 | /** |
||
130 | * @param $data |
||
131 | * |
||
132 | * @return array|string |
||
133 | */ |
||
134 | protected function rawurlencode($data){ |
||
145 | |||
146 | /** |
||
147 | * from https://github.com/abraham/twitteroauth/blob/master/src/Util.php |
||
148 | * |
||
149 | * @param array $params |
||
150 | * @param bool $urlencode |
||
|
|||
151 | * @param string $delimiter |
||
152 | * @param string $enclosure |
||
153 | * |
||
154 | * @return string |
||
155 | */ |
||
156 | public function buildHttpQuery(array $params, bool $urlencode = null, string $delimiter = null, string $enclosure = null):string { |
||
200 | |||
201 | |||
202 | } |
||
203 |
This check looks for
@param
annotations where the type inferred by our type inference engine differs from the declared type.It makes a suggestion as to what type it considers more descriptive.
Most often this is a case of a parameter that can be null in addition to its declared types.