1 | <?php |
||
16 | class HttpGuzzlClient implements HttpClientInterface |
||
17 | { |
||
18 | const DEFAULT_CONNECTION_TIMEOUT = 5; |
||
19 | const DEFAULT_TIMEOUT = 30; |
||
20 | |||
21 | /** |
||
22 | * @var ClientInterface |
||
23 | */ |
||
24 | private $oGuzzelClient; |
||
25 | |||
26 | /** |
||
27 | * @var AuthEntity |
||
28 | */ |
||
29 | private $oAuthEntity; |
||
30 | |||
31 | /** |
||
32 | * @param ClientInterface $oGuzzelClient |
||
33 | * @param AuthEntity $oAuthEntity |
||
34 | */ |
||
35 | 7 | public function __construct( |
|
43 | |||
44 | /** |
||
45 | * @param string $sUrl |
||
46 | * @return HttpClientResponseInterface |
||
47 | * @throws HttpConnectionException |
||
48 | */ |
||
49 | 3 | public function get($sUrl) |
|
67 | |||
68 | /** |
||
69 | * @param string $sUrl |
||
70 | * @param mixed $mPostData |
||
71 | * @return HttpGuzzlResponse |
||
72 | */ |
||
73 | 2 | public function postJsonData($sUrl, $mPostData) |
|
83 | |||
84 | /** |
||
85 | * @param string $sUrl |
||
86 | * @return HttpGuzzlResponse |
||
87 | */ |
||
88 | 2 | public function delete($sUrl) |
|
94 | |||
95 | /** |
||
96 | * Returns default options for the HTTP request. |
||
97 | * If an username and password is provided, auth |
||
98 | * header will be applied as well. |
||
99 | * |
||
100 | * @return array |
||
|
|||
101 | */ |
||
102 | 7 | private function getDefaultRequestOptions() { |
|
120 | } |
This check looks for the generic type
array
as a return type and suggests a more specific type. This type is inferred from the actual code.