| Conditions | 2 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 1 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function __construct(string $path, string $method, array $parameters = []) |
||
| 27 | { |
||
| 28 | if (!\in_array($method, [self::METHOD_GET, self::METHOD_POST, self::METHOD_PUT, self::METHOD_DELETE], true)) { |
||
| 29 | throw new MethodNotAllowedException('The method "' . $method . '" is not allowed', 1536352833); |
||
| 30 | } |
||
| 31 | $this->path = $path; |
||
| 32 | 10 | $this->method = $method; |
|
| 33 | $this->parameters = $parameters; |
||
| 34 | 10 | } |
|
| 56 |