ContentInterface
last analyzed

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 0
cts 0
cp 0

1 Method

Rating   Name   Duplication   Size   Complexity  
__construct() 0 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
interface ContentInterface
8
{
9
    public function __construct(HttpClient $client, HttpResponse $response);
10
}
11