| 1 | <?php |
||
| 7 | class TwitterCoordinates implements TwitterSerializable |
||
| 8 | { |
||
| 9 | const TYPE_POINT = 'point'; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | private $type; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var float |
||
| 18 | */ |
||
| 19 | private $longitude; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var float |
||
| 23 | */ |
||
| 24 | private $latitude; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Constructor. |
||
| 28 | */ |
||
| 29 | 18 | public function __construct() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * @return float |
||
| 35 | */ |
||
| 36 | 9 | public function getLatitude() |
|
| 40 | |||
| 41 | /** |
||
| 42 | * @return float |
||
| 43 | */ |
||
| 44 | 9 | public function getLongitude() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * @return string |
||
| 51 | */ |
||
| 52 | 9 | public function getType() |
|
| 56 | |||
| 57 | /** |
||
| 58 | * Static constructor. |
||
| 59 | * |
||
| 60 | * @param float $latitude |
||
| 61 | * @param float $longitude |
||
| 62 | * @param string $type |
||
| 63 | * |
||
| 64 | * @return TwitterCoordinates |
||
| 65 | */ |
||
| 66 | 18 | public static function create($longitude, $latitude, $type) |
|
| 76 | } |
||
| 77 |