Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | 27 | public function __construct( |
|
21 | string $uri, |
||
22 | int $code = self::STATUS_FOUND, |
||
23 | array $headers = [], |
||
24 | string $protocol = '1.1', |
||
25 | string $reasonPhrase = '' |
||
26 | ) { |
||
27 | 27 | $headers['Location'] = $uri; |
|
28 | 27 | $this->init($code, $reasonPhrase, $headers, 'php://temp', $protocol); |
|
29 | } |
||
31 |