EmptyContent   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 10
wmc 1
lcom 0
cbo 1
ccs 0
cts 4
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
namespace ApigilityClient\Http\Response\Content;
3
4
use Zend\Http\Response as HttpResponse,
5
    Zend\Http\Client as HttpClient;
6
7
use ApiClient\Core\Response\TriggerException;
8
9
final class EmptyContent extends AbstractContent
10
{
11
    const CONTENT_TYPE = 'text/html';
12
13
    public function __construct(HttpClient $client, HttpResponse $response)
14
    {
15
        $this->content = '';
16
    }
17
18
}
19