Completed
Pull Request — master (#76)
by Thibaud
06:32
created

GuzzleHttpClient::call()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 10
rs 9.4285
cc 1
eloc 7
nc 1
nop 6
1
<?php
2
3
/*
4
 * This file is part of Phraseanet-PHP-SDK.
5
 *
6
 * (c) Alchemy <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace PhraseanetSDK\Http\GuzzleHttp;
13
14
use PhraseanetSDK\Http\Client;
15
16
class GuzzleHttpClient implements Client
17
{
18
19
    /**
20
     * @param string $method
21
     * @param string $path
22
     * @param array $query
23
     * @param array $postFields
24
     * @param array $files
25
     * @param array $headers
26
     * @return string
27
     */
28
    public function call(
29
        $method,
30
        $path,
31
        array $query = array(),
32
        array $postFields = array(),
33
        array $files = array(),
34
        array $headers = array()
35
    ) {
36
        // TODO: Implement call() method.
37
    }
38
}
39