| 1 | <?php declare(strict_types=1); |
||
| 7 | abstract class EmptyResponse implements ResponseInterface, EmptyResourceInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @return string |
||
| 11 | */ |
||
| 12 | 2 | public function version() : string |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | 2 | public function termsofService() : string |
|
| 24 | |||
| 25 | /** |
||
| 26 | * @return array |
||
| 27 | */ |
||
| 28 | 2 | public function features() : array |
|
| 32 | } |
||
| 33 |