1 | <?php |
||
13 | class InMemoryGeocoder implements Geocoder { |
||
14 | |||
15 | private $locations; |
||
16 | |||
17 | /** |
||
18 | * @param LatLongValue[] $locations |
||
19 | */ |
||
20 | public function __construct( array $locations ) { |
||
23 | |||
24 | /** |
||
25 | * @param string $address |
||
26 | * |
||
27 | * @return LatLongValue|null |
||
28 | */ |
||
29 | public function geocode( $address ) { |
||
36 | |||
37 | } |
||
38 |