1 | <?php declare(strict_types = 1); |
||
16 | abstract class Response implements Element |
||
17 | { |
||
18 | use VisiteeMixin; |
||
19 | |||
20 | /** |
||
21 | * @var int |
||
22 | */ |
||
23 | protected $code; |
||
24 | |||
25 | /** |
||
26 | * @var Schema |
||
27 | */ |
||
28 | protected $schema; |
||
29 | |||
30 | /** |
||
31 | * @return int |
||
32 | */ |
||
33 | public function getCode(): int |
||
37 | |||
38 | /** |
||
39 | * @return Schema |
||
40 | */ |
||
41 | public function getSchema(): Schema |
||
45 | } |
||
46 |