| 1 | <?php |
||
| 24 | final class MessageFactory implements ResponseFactory, RequestFactory |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function createRequest($method, $uri, array $headers = [], $body = null, $protocolVersion = '1.1') |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function createResponse($statusCode = 200, $reasonPhrase = null, array $headers = [], $body = null, $protocolVersion = '1.1') |
||
| 41 | } |
||
| 42 |