for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Maps\Geocoders;
use DataValues\Geo\Values\LatLongValue;
/**
* @licence GNU GPL v2+
* @author Jeroen De Dauw < [email protected] >
*/
class NullGeocoder implements Geocoder {
* @param string $address
*
* @return LatLongValue|null
public function geocode( $address ) {
return null;
}