for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Germania\GeoData;
trait GeoDataProviderTrait
{
/**
* @var GeoDataInterface
*/
public $geodata;
* @return null|GeoDataInterface
public function getGeoData()
return $this->geodata;
}