| 1 | <?php |
||
| 13 | trait Psr7Trait |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @return ServerRequestInterface |
||
| 17 | * @throws \InvalidArgumentException |
||
| 18 | */ |
||
| 19 | protected function createServerRequest(): ServerRequestInterface |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @return ApplicationPsr7ResponseInterface |
||
| 26 | */ |
||
| 27 | protected function createResponse(): ApplicationPsr7ResponseInterface |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return StreamInterface |
||
| 34 | */ |
||
| 35 | protected function createStream(): StreamInterface |
||
| 39 | } |
||
| 40 |