for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JeroenDesloovere\Geolocation\Result;
class Coordinates
{
private $latitude;
private $longitude;
public function __construct($latitude, $longitude)
$this->latitude = $latitude;
$this->longitude = $longitude;
}
/**
* @return mixed
*/
public function getLatitude()
return $this->latitude;
public function getLongitude()
return $this->longitude;