Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
23 | 4 | public function __construct(string $link, array $headers = []) |
|
24 | { |
||
25 | 4 | $link = '<' . $link . '>; rel="blocked-by"'; |
|
26 | 4 | $headers = array_merge($headers, ['link' => [$link]]); |
|
27 | |||
28 | 4 | parent::__construct(451, 'Unavailable For Legal Reasons', $headers); |
|
29 | 4 | } |
|
30 | } |
||
31 |