Skip to content

Commit b95e1f1

Browse files
committed
cs fixes
1 parent cef016d commit b95e1f1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,5 @@ jobs:
6363
extensions: curl
6464
- name: Install dependencies
6565
run: composer install --no-progress
66-
- name: Run PHPStan
66+
- name: Run php-cs-fixer
6767
run: composer run-script cs

src/Common/Model/Address.php

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)