| 1 | <?php |
||
| 14 | class Status implements QueryInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * {@inheritdoc} |
||
| 18 | */ |
||
| 19 | public function httpMethod(): string |
||
| 23 | |||
| 24 | /** |
||
| 25 | * {@inheritdoc} |
||
| 26 | */ |
||
| 27 | public function uri(): string |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function toArray(): array |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param ResponseInterface $response |
||
| 42 | * |
||
| 43 | * @return AbstractResult |
||
| 44 | */ |
||
| 45 | public function queryResult(ResponseInterface $response): AbstractResult |
||
| 49 | } |
||
| 50 |