| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class CheckTicketXmlResponse extends SimpleXMLElement implements ResponseSendMessage |
||
| 10 | { |
||
| 11 | public function isError(): bool |
||
| 12 | { |
||
| 13 | return $this->getCode() !== 200; |
||
| 14 | } |
||
| 15 | |||
| 16 | public function getCode(): int |
||
| 17 | { |
||
| 18 | return (int)$this->Result->Code; |
||
|
|
|||
| 19 | } |
||
| 20 | |||
| 21 | public function getBody(): string |
||
| 24 | } |
||
| 25 | } |
||
| 26 |