Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class Response implements Collector |
||
7 | { |
||
8 | /** |
||
9 | * @var BaseResponse |
||
10 | */ |
||
11 | protected $response; |
||
12 | |||
13 | /** |
||
14 | * Response constructor. |
||
15 | * @param \Fyuze\Http\Response $response |
||
16 | */ |
||
17 | 7 | public function __construct(BaseResponse $response) |
|
20 | } |
||
21 | |||
22 | /** |
||
23 | * @return int |
||
24 | */ |
||
25 | 2 | public function tab() |
|
37 |