Completed
Push — master ( 327515...051294 )
by Indra
02:26
created

StreamResult   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 9 1
1
<?php
2
3
namespace IndraGunawan\RestService;
4
5
use GuzzleHttp\Psr7\Response as BaseResponse;
6
7
class StreamResult extends BaseResponse
8
{
9
    public function __construct(
10
        $status = 200,
11
        array $headers = [],
12
        $body = null,
13
        $version = '1.1',
14
        $reason = null
15
    ) {
16
        parent::__construct($status, $headers, $body, $version, $reason);
17
    }
18
}
19