Skip to content

Commit 7c6928a

Browse files
committed
Fix CS
1 parent 9861137 commit 7c6928a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Geocoder/Model/AddressFactory.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
final class AddressFactory
1818
{
1919
/**
20-
* @param array $results
20+
* @param array $results
2121
* @return \Geocoder\Model\AddressCollection
2222
*/
2323
public function createFromArray(array $results)

src/Geocoder/Model/AdminLevel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ final class AdminLevel
3131
private $code;
3232

3333
/**
34-
* @param int $level
34+
* @param int $level
3535
* @param string $name
3636
* @param string $code
3737
*/

src/Geocoder/Model/AdminLevelCollection.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public function all()
104104
}
105105

106106
/**
107-
* @param integer $level
107+
* @param integer $level
108108
* @throws \OutOfBoundsException
109109
*/
110110
private function checkLevel($level)

src/Geocoder/Provider/BingMaps.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ private function executeQuery($query)
134134
$city = property_exists($item->address, 'locality') ? (string) $item->address->locality: '';
135135
$country = property_exists($item->address, 'countryRegion') ? (string) $item->address->countryRegion: '';
136136
$countryCode = property_exists($item->address, 'countryRegionIso2') ? (string) $item->address->countryRegionIso2: '';
137-
137+
138138
$adminLevels = [];
139139

140140
foreach (['adminDistrict', 'adminDistrict2'] as $i => $property) {

src/Geocoder/Provider/Chain.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function geocode($address)
4040
{
4141
$exceptions = [];
4242
foreach ($this->providers as $provider) {
43-
if ($provider instanceof LocaleAwareProvider && $this->getLocale() !== null){
43+
if ($provider instanceof LocaleAwareProvider && $this->getLocale() !== null) {
4444
$provider = clone $provider;
4545
$provider->setLocale($this->getLocale());
4646
}

0 commit comments

Comments
 (0)