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 | 5 | public function __construct(array $allowedMethods, array $headers = []) |
|
24 | { |
||
25 | 5 | $allowedMethods = array_map('strtoupper', $allowedMethods); |
|
26 | 5 | $headers = array_merge($headers, ['allow' => $allowedMethods]); |
|
27 | |||
28 | 5 | parent::__construct(405, 'Method Not Allowed', $headers); |
|
29 | 5 | } |
|
30 | } |
||
31 |