Total Complexity | 1 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | final class ServerRequestFactory implements ServerRequestFactoryInterface |
||
20 | { |
||
21 | /** |
||
22 | * @param string $method |
||
23 | * @param UriInterface|string $uri |
||
24 | * @param array $serverParams |
||
25 | * @return ServerRequestInterface |
||
26 | */ |
||
27 | public function createServerRequest(string $method, $uri, array $serverParams = []): ServerRequestInterface |
||
32 |