for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Germania\GeoData;
class GeoData extends GeoDataAbstract implements GeoDataInterface, GeoDataProviderInterface
{
/**
* @param float $latitude
* @param float $longitude
*/
public function __construct( ?float $latitude = null, ?float $longitude = null)
$this->latitude = $latitude;
$this->longitude = $longitude;
}
public function setLatitude( ?float $latitude = null) : self
return $this;
public function setLongitude( ?float $longitude = null) : self
* @inheritDoc
* @return self
public function getGeoData() : ?GeoDataInterface