Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b280be5

Browse files
committed
Fix Geocoder type hint
1 parent c888d7c commit b280be5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Geocoder/Geocoder.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
namespace Geocoder;
1212

13-
use Geocoder\Model\Address;
13+
use Geocoder\Model\AddressCollection;
1414

1515
/**
1616
* @author William Durand <[email protected]>
@@ -27,7 +27,7 @@ interface Geocoder
2727
*
2828
* @param string $value
2929
*
30-
* @return Address[]
30+
* @return AddressCollection
3131
*/
3232
public function geocode($value);
3333

@@ -37,7 +37,7 @@ public function geocode($value);
3737
* @param double $latitude.
3838
* @param double $longitude
3939
*
40-
* @return Address[]
40+
* @return AddressCollection
4141
*/
4242
public function reverse($latitude, $longitude);
4343

0 commit comments

Comments
 (0)