8000 cs · geocoder-php/Geocoder@f7eae02 · GitHub
[go: up one dir, main page]

Skip to content

Commit f7eae02

Browse files
committed
cs
1 parent 797dd8d commit f7eae02

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

src/Common/Model/AddressBuilder.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ final class AddressBuilder
8282
private $timezone;
8383

8484
/**
85-
*
8685
* @param string $providedBy
8786
*/
8887
public function __construct(string $providedBy)

src/Common/Tests/Dumper/GeoArrayTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function testDump()
4141
'coordinates' => [0, 0],
4242
],
4343
'properties' => [
44-
'providedBy' => 'n/a'
44+
'providedBy' => 'n/a',
4545
],
4646
];
4747

@@ -65,7 +65,7 @@ public function testDumpWithData()
6565
'coordinates' => [2.3889114, 48.8631507],
6666
],
6767
'properties' => [
68-
'providedBy' => 'n/a'
68+
'providedBy' => 'n/a',
6969
],
7070
];
7171

@@ -95,7 +95,7 @@ public function testDumpWithBounds()
9595
'coordinates' => [2.3889114, 48.8631507],
9696
],
9797
'properties' => [
98-
'providedBy' => 'n/a'
98+
'providedBy' => 'n/a',
9999
],
100100
'bounds' => [
101101
'south' => 48.8631507,
@@ -135,7 +135,7 @@ public function testDumpWithProperties()
135135
'properties' => [
136136
'locality' => 'Paris',
137137
'country' => 'France',
138-
'providedBy' => 'n/a'
138+
'providedBy' => 'n/a',
139139
],
140140
'bounds' => [
141141
'south' => 48.8631507,

src/Common/Tests/Dumper/GeoJsonTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function testDump()
4242
'coordinates' => [0, 0],
4343
],
4444
'properties' => [
45-
'providedBy' => 'n/a'
45+
'providedBy' => 'n/a',
4646
],
4747
];
4848

@@ -66,7 +66,7 @@ public function testDumpWithData()
6666
'coordinates' => [2.3889114, 48.8631507],
6767
],
6868
'properties' => [
69-
'providedBy' => 'n/a'
69+
'providedBy' => 'n/a',
7070
],
7171
];
7272

@@ -96,7 +96,7 @@ public function testDumpWithBounds()
9696
'coordinates' => [2.3889114, 48.8631507],
9797
],
9898
'properties' => [
99-
'providedBy' => 'n/a'
99+
'providedBy' => 'n/a',
100100
],
101101
'bounds' => [
102102
'south' => 48.8631507,

src/Provider/GoogleMaps/GoogleMaps.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@ private function fetchUrl($url, $locale, $limit, $region)
271271
* Update current resultSet with given key/value.
272272
*
273273
* @param AddressBuilder $builder
274-
* @param string $type Component type
275-
* @param object $values The component values
274+
* @param string $type Component type
275+
* @param object $values The component values
276276
*/
277277
private function updateAddressComponent(AddressBuilder $builder, $type, $values)
278278
{

0 commit comments

Comments
 (0)
0