1 | <?php declare(strict_types=1); |
||
11 | abstract class Response extends AbstractResource implements ResponseInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $version; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $termsofService; |
||
22 | |||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | protected $features; |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function version() : string |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function termsofService() : string |
||
43 | |||
44 | /** |
||
45 | * @return array |
||
46 | */ |
||
47 | public function features() : array |
||
51 | } |
||
52 |