Skip to content

Commit 93d8ccf

Browse files
TerjeBrNyholm
authored andcommitted
MapQuest improvement (#840)
* Changes to common files for PR #840 * MapQuest support 5Box address specification * With these changes I find it way easier to merge your PR * Let us keep the method extractAddressFromQuery * Update Readme.md
1 parent c5af658 commit 93d8ccf

19 files changed

+622
-71
lines changed

GetAddressInterface.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Geocoder package.
5+
* For the full copyright and license information, please view the LICENSE
6+
* file that was distributed with this source code.
7+
*
8+
* @license MIT License
9+
*/
10+
11+
namespace Geocoder\Provider\MapQuest;
12+
13+
use Geocoder\Location;
14+
15+
interface GetAddressInterface
16+
{
17+
/**
18+
* @return Location|null
19+
*/
20+
public function getAddress();
21+
}

0 commit comments

Comments
 (0)