| 1 | <?php |
||
| 11 | class GuzzleClient implements HttpClient |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var phmGuzzleClient |
||
| 15 | */ |
||
| 16 | private $guzzleClient; |
||
| 17 | |||
| 18 | public function init($nocache = false) |
||
| 27 | |||
| 28 | public function sendRequest(RequestInterface $request) |
||
| 32 | |||
| 33 | public function sendRequests(array $requests) |
||
| 37 | |||
| 38 | public function getClientType() |
||
| 42 | |||
| 43 | public function close() |
||
| 47 | } |
||
| 48 |
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..