| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 71.43% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class RequestFactory implements RequestFactoryInterface |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * |
||
| 12 | * @param string $method |
||
| 13 | * @param \Psr\Http\Message\UriInterface|string $uri |
||
| 14 | * @return Request |
||
| 15 | * @throws \InvalidArgumentException |
||
| 16 | */ |
||
| 17 | 20 | public function createRequest(string $method, $uri): \Psr\Http\Message\RequestInterface |
|
| 33 |