1 | <?php |
||
10 | class GuzzleClient implements HttpClient |
||
11 | { |
||
12 | /** |
||
13 | * @var phmGuzzleClient |
||
14 | */ |
||
15 | private $guzzleClient; |
||
16 | |||
17 | /** |
||
18 | * @param bool $nocache |
||
19 | * @param integer $clientTimeout |
||
20 | * @throws \Exception |
||
21 | */ |
||
22 | public function init($nocache = true, $clientTimeout = 20000) |
||
33 | |||
34 | public function sendRequest(RequestInterface $request) |
||
38 | |||
39 | public function sendRequests(array $requests) |
||
43 | |||
44 | public function getClientType() |
||
48 | |||
49 | public function close() |
||
53 | |||
54 | public function setOption($key, $value) |
||
58 | } |
||
59 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..