| Total Complexity | 4 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class GetTicketXmlResponse extends SimpleXMLElement implements ResponseSendMessage, ResponseReceipt |
||
| 12 | { |
||
| 13 | public function isError(): bool |
||
| 14 | { |
||
| 15 | return $this->getCode() !== 200; |
||
| 16 | } |
||
| 17 | |||
| 18 | public function getCode(): int |
||
| 21 | } |
||
| 22 | |||
| 23 | public function getBody(): string |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getReceipt():Receipt |
||
| 33 |