Skip to content

Commit 96eb6cd

Browse files
Feature/fix php cs (#1236)
* feat: bump dev dependencies * chore: fix php cs --------- Co-authored-by: Christopher Georg <[email protected]>
1 parent f7ec883 commit 96eb6cd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/Common/Model/Address.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ final public function __construct(
8585
?string $locality = null,
8686
?string $subLocality = null,
8787
?Country $country = null,
88-
?string $timezone = null
88+
?string $timezone = null,
8989
) {
9090
$this->providedBy = $providedBy;
9191
$this->adminLevels = $adminLevels;

src/Provider/ArcGISOnline/ArcGISOnline.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ final class ArcGISOnline extends AbstractHttpProvider implements Provider
7171
public static function token(
7272
ClientInterface $client,
7373
string $token,
74-
?string $sourceCountry = null
74+
?string $sourceCountry = null,
7575
) {
7676
$provider = new self($client, $sourceCountry, $token);
7777

src/Provider/AzureMaps/AzureMaps.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function __construct(
7474
ClientInterface $client,
7575
string $subscriptionKey,
7676
array $options = [],
77-
string $format = 'json'
77+
string $format = 'json',
7878
) {
7979
parent::__construct($client);
8080

src/Provider/GoogleMaps/GoogleMaps.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public static function business(
8686
?string $privateKey = null,
8787
?string $region = null,
8888
?string $apiKey = null,
89-
?string $channel = null
89+
?string $channel = null,
9090
) {
9191
$provider = new self($client, $region, $apiKey);
9292
$provider->clientId = $clientId;

src/Provider/Mapbox/Mapbox.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public function __construct(
149149
ClientInterface $client,
150150
string $accessToken,
151151
?string $country = null,
152-
string $geocodingMode = self::GEOCODING_MODE_PLACES
152+
string $geocodingMode = self::GEOCODING_MODE_PLACES,
153153
) {
154154
parent::__construct($client);
155155

0 commit comments

Comments
 (0)