| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- namespace Test\Michel\Framework\Core\Mock;
- use Psr\Container\ContainerInterface;
- use Psr\Http\Message\MessageInterface;
- use Psr\Http\Message\ResponseInterface;
- use Psr\Http\Message\StreamInterface;
- class ResponseMock implements ResponseInterface
- {
- public function getProtocolVersion(): string
- {
- // TODO: Implement getProtocolVersion() method.
- }
- public function withProtocolVersion(string $version): MessageInterface
- {
- // TODO: Implement withProtocolVersion() method.
- }
- public function getHeaders(): array
- {
- // TODO: Implement getHeaders() method.
- }
- public function hasHeader(string $name): bool
- {
- // TODO: Implement hasHeader() method.
- }
- public function getHeader(string $name): array
- {
- // TODO: Implement getHeader() method.
- }
- public function getHeaderLine(string $name): string
- {
- // TODO: Implement getHeaderLine() method.
- }
- public function withHeader(string $name, $value): MessageInterface
- {
- // TODO: Implement withHeader() method.
- }
- public function withAddedHeader(string $name, $value): MessageInterface
- {
- // TODO: Implement withAddedHeader() method.
- }
- public function withoutHeader(string $name): MessageInterface
- {
- // TODO: Implement withoutHeader() method.
- }
- public function getBody(): StreamInterface
- {
- // TODO: Implement getBody() method.
- }
- public function withBody(StreamInterface $body): MessageInterface
- {
- // TODO: Implement withBody() method.
- }
- public function getStatusCode(): int
- {
- // TODO: Implement getStatusCode() method.
- }
- public function withStatus(int $code, string $reasonPhrase = ''): ResponseInterface
- {
- // TODO: Implement withStatus() method.
- }
- public function getReasonPhrase(): string
- {
- // TODO: Implement getReasonPhrase() method.
- }
- }
|