Total Complexity | 3 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Response extends AbstractMessage implements ResponseInterface |
||
14 | { |
||
15 | /** |
||
16 | * Returns the status of the response. |
||
17 | * |
||
18 | * @return string|null The status or null if not set. |
||
19 | */ |
||
20 | public function getStatus(): ?string |
||
21 | { |
||
22 | return $this->getParameter('status'); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @inheritDoc |
||
27 | */ |
||
28 | public function parseResponseData($data): void |
||
34 | } |
||
35 | } |
||
37 |