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( $latitude, $longitude)
$this->latitude = $latitude;
$this->longitude = $longitude;
}
* @inheritDoc
public function getGeoData()
return $this;