Transport   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 13
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A request() 0 4 1
1
<?php
2
/**
3
 * @author Dmitry Gladyshev <[email protected]>
4
 * @date 01.04.17 23:31
5
 */
6
7
namespace Yandex\Direct\Transport\Soap;
8
9
use Yandex\Direct\Transport\RequestInterface;
10
use Yandex\Direct\Transport\ResponseInterface;
11
use Yandex\Direct\Transport\TransportInterface;
12
13
/**
14
 * Class Transport
15
 */
16
class Transport implements TransportInterface
17
{
18
    /**
19
     * Request API.
20
     *
21
     * @param RequestInterface $request
22
     * @return ResponseInterface
23
     */
24
    public function request(RequestInterface $request)
25
    {
26
        // TODO: Implement request() method.
27
    }
28
}
29