| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class Location extends AbstractEntity |
||
| 6 | { |
||
| 7 | const ENTITY_TYPE = 'Location'; |
||
| 8 | |||
| 9 | protected $longitude; |
||
| 10 | |||
| 11 | protected $latitude; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @return mixed |
||
| 15 | */ |
||
| 16 | public function getLongitude() |
||
| 17 | { |
||
| 18 | return $this->longitude; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @return mixed |
||
| 23 | */ |
||
| 24 | public function getLatitude() |
||
| 27 | } |
||
| 28 | } |