8000 Fix StyleCI (#1084) · geocoder-php/php-common@7cf1b1c · GitHub
[go: up one dir, main page]

Skip to content

Commit 7cf1b1c

Browse files
authored
Fix StyleCI (#1084)
* Update .styleci.yml * Apply StyleCI fix * Update .styleci.yml * Apply StyleCI fix * Apply StyleCI fix
1 parent dc9b6a1 commit 7cf1b1c

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Model/AddressBuilder.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public function addAdminLevel(int $level, string $name, string $code = null): se
179179
}
180180

181181
/**
182-
* @param null|string $streetNumber
182+
* @param string|null $streetNumber
183183
*
184184
* @return AddressBuilder
185185
*/
@@ -191,7 +191,7 @@ public function setStreetNumber($streetNumber): self
191191
}
192192

193193
/**
194-
* @param null|string $streetName
194+
* @param string|null $streetName
195195
*
196196
* @return AddressBuilder
197197
*/
@@ -203,7 +203,7 @@ public function setStreetName($streetName): self
203203
}
204204

205205
/**
206-
* @param null|string $locality
206+
* @param string|null $locality
207207
*
208208
* @return AddressBuilder
209209
*/
@@ -215,7 +215,7 @@ public function setLocality($locality): self
215215
}
216216

217217
/**
218-
* @param null|string $postalCode
218+
* @param string|null $postalCode
219219
*
220220
* @return AddressBuilder
221221
*/
@@ -227,7 +227,7 @@ public function setPostalCode($postalCode): self
227227
}
228228

229229
/**
230-
* @param null|string $subLocality
230+
* @param string|null $subLocality
231231
*
232232
* @return AddressBuilder
233233
*/
@@ -251,7 +251,7 @@ public function setAdminLevels($adminLevels): self
251251
}
252252

253253
/**
254-
* @param null|string $country
254+
* @param string|null $country
255255
*
256256
* @return AddressBuilder
257257
*/
@@ -263,7 +263,7 @@ public function setCountry($country): self
263263
}
264264

265265
/**
266-
* @param null|string $countryCode
266+
* @param string|null $countryCode
267267
*
268268
* @return AddressBuilder
269269
*/
@@ -275,7 +275,7 @@ public function setCountryCode($countryCode): self
275275
}
276276

277277
/**
278-
* @param null|string $timezone
278+
* @param string|null $timezone
279279
*
280280
* @return AddressBuilder
281281
*/

Model/Coordinates.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function getLongitude(): float
6969
}
7070

7171
/**
72-
* Returns the coordinates as a tuple
72+
* Returns the coordinates as a tuple.
7373
*
7474
* @return array
7575
*/

Query/GeocodeQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ public function getAllData(): array
192192
}
193193

194194
/**
195-
* String for logging. This is also a unique key for the query
195+
* String for logging. This is also a unique key for the query.
196196
*
197197
* @return string
198198
*/

Query/ReverseQuery.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ public function getAllData(): array
170170
}
171171

172172
/**
173-
* String for logging. This is also a unique key for the query
173+
* String for logging. This is also a unique key for the query.
174174
*
175175
* @return string
176176
*/

0 commit comments

Comments
 (0)
0