| Total Complexity | 6 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | abstract class AbstractLocation extends AbstractResponse { |
||
| 8 | |||
| 9 | public function getKey() : string { |
||
| 10 | return $this->_raw->body['key']; |
||
| 11 | } |
||
| 12 | |||
| 13 | public function getContact() : string { |
||
| 14 | return $this->_raw->body['contact']; |
||
| 15 | } |
||
| 16 | |||
| 17 | public function getAgreement() : string { |
||
| 18 | return $this->_raw->body['agreement']; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getInitialIP() : string { |
||
| 22 | return $this->_raw->body['initialIp']; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function getCreatedAt() : string { |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getStatus() : string { |
||
| 30 | return $this->_raw->body['status']; |
||
| 31 | } |
||
| 32 | } |