| 1 | <?php |
||
| 28 | final class RequestFactory implements RequestFactoryInterface |
||
| 29 | { |
||
| 30 | /** |
||
| 31 | * Create a new request. |
||
| 32 | * |
||
| 33 | * @param string $method |
||
| 34 | * @param UriInterface|string|null $uri |
||
| 35 | * |
||
| 36 | * @return RequestInterface |
||
| 37 | */ |
||
| 38 | 1 | public function createRequest(string $method, $uri): RequestInterface |
|
| 42 | } |
||
| 43 |