Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | abstract class Response |
||
12 | { |
||
13 | /** |
||
14 | * @var ResponseHeader |
||
15 | * @SerializedName("ResponseHeader") |
||
16 | * @Type("Ticketpark\SaferpayJson\Response\Container\ResponseHeader") |
||
17 | */ |
||
18 | protected $responseHeader; |
||
19 | |||
20 | public function getResponseHeader(): ResponseHeader |
||
21 | { |
||
22 | return $this->responseHeader; |
||
23 | } |
||
24 | |||
25 | public function setResponseHeader(ResponseHeader $responseHeader): self |
||
30 | } |
||
31 | } |
||
32 |