HTTPClientService   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 0
dl 0
loc 18
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A post() 0 4 1
A get() 0 4 1
1
<?php
2
/*
3
 * This file is part of the FreshSinchBundle
4
 *
5
 * (c) Artem Henvald <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
declare(strict_types=1);
12
13
namespace Fresh\SinchBundle\Service;
14
15
/**
16
 * HTTPClientInterface.
17
 *
18
 * @author Artem Henvald <[email protected]>
19
 */
20
class HTTPClientService implements HTTPClientInterface
21
{
22
    /**
23
     * {@inheritdoc}
24
     */
25
    public function post(string $uri, array $body = [], array $headers = [])
26
    {
27
        // @todo
28
    }
29
30
    /**
31
     * {@inheritdoc}
32
     */
33
    public function get(string $uri, array $queryParameters = [], array $headers = [])
34
    {
35
        // @todo
36
    }
37
}
38