Skip to content

Instantly share code, notes, and snippets.

@ld-web
Last active February 23, 2020 11:42
Show Gist options
  • Save ld-web/a740f3544ccf1ecc84c7c5eab0e2d680 to your computer and use it in GitHub Desktop.
Save ld-web/a740f3544ccf1ecc84c7c5eab0e2d680 to your computer and use it in GitHub Desktop.
<?php
// File : src/Geocoding/IGeocoding.php
namespace App\Geocoding;
use App\Entity\LatLng;
interface IGeocoding
{
public function getLatLng(string $location): ?LatLng;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment