Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
32 | 10 | public function __construct(string $path, string $method) |
|
33 | { |
||
34 | 10 | if (!\in_array($method, $this->allowedMethods, true)) { |
|
35 | 5 | throw new MethodNotAllowedException('The method "' . $method . '" is not allowed', 1536352833); |
|
36 | } |
||
37 | 5 | $this->path = $path; |
|
38 | 5 | $this->method = $method; |
|
39 | 5 | } |
|
40 | |||
57 |