Completed
Push — master ( 6b7e50...0c3d0f )
by Artem
03:01
created

HTTPClientService   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

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 Genvald <[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
namespace Fresh\SinchBundle\Service;
12
13
/**
14
 * HTTPClientInterface.
15
 *
16
 * @author Artem Genvald <[email protected]>
17
 */
18
class HTTPClientService implements HTTPClientInterface
19
{
20
    /**
21
     * {@inheritdoc}
22
     */
23
    public function post($uri, $body = [], $headers = [])
24
    {
25
        // @todo
26
    }
27
28
    /**
29
     * {@inheritdoc}
30
     */
31
    public function get($uri, $queryParameters = [], $headers = [])
32
    {
33
        // @todo
34
    }
35
}
36