1 | <?php |
||
9 | class ClientHttp extends BaseClient |
||
10 | { |
||
11 | /** |
||
12 | * Method request |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $method; |
||
16 | |||
17 | /** |
||
18 | * URL to Request |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $url; |
||
22 | |||
23 | /** |
||
24 | * Cookie string |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $cookie; |
||
28 | |||
29 | /** |
||
30 | * Response from request |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $response; |
||
34 | |||
35 | /** |
||
36 | * Request to URL |
||
37 | * @SuppressWarnings(PHPMD) |
||
38 | * @param string $method |
||
39 | * @param string $url |
||
40 | * @param array $parameters |
||
41 | * @param array $files |
||
42 | * @param array $server |
||
43 | * @param string $content |
||
44 | * @param boolean $changeHistory |
||
45 | * @return @instance |
||
|
|||
46 | */ |
||
47 | public function request($method, $url, array $parameters = array(), array $files = array(), array $server = array(), $content = null, $changeHistory = true) |
||
54 | |||
55 | /** |
||
56 | * get headers from response |
||
57 | * @return string |
||
58 | */ |
||
59 | private function headers() |
||
63 | |||
64 | /** |
||
65 | * get cookie from response |
||
66 | * @return string |
||
67 | */ |
||
68 | public function cookie() |
||
72 | } |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.