ContentInterface::__construct()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 1
ccs 0
cts 0
cp 0
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