Skip to content

Commit

Permalink
chore: fix php cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris8934 committed Nov 14, 2024
1 parent e506503 commit 28eda01
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Common/Model/Address.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ final public function __construct(
?string $locality = null,
?string $subLocality = null,
?Country $country = null,
?string $timezone = null
?string $timezone = null,
) {
$this->providedBy = $providedBy;
$this->adminLevels = $adminLevels;
Expand Down
2 changes: 1 addition & 1 deletion src/Provider/ArcGISOnline/ArcGISOnline.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ final class ArcGISOnline extends AbstractHttpProvider implements Provider
public static function token(
ClientInterface $client,
string $token,
?string $sourceCountry = null
?string $sourceCountry = null,
) {
$provider = new self($client, $sourceCountry, $token);

Expand Down
2 changes: 1 addition & 1 deletion src/Provider/AzureMaps/AzureMaps.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function __construct(
ClientInterface $client,
string $subscriptionKey,
array $options = [],
string $format = 'json'
string $format = 'json',
) {
parent::__construct($client);

Expand Down
2 changes: 1 addition & 1 deletion src/Provider/GoogleMaps/GoogleMaps.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static function business(
?string $privateKey = null,
?string $region = null,
?string $apiKey = null,
?string $channel = null
?string $channel = null,
) {
$provider = new self($client, $region, $apiKey);
$provider->clientId = $clientId;
Expand Down
2 changes: 1 addition & 1 deletion src/Provider/Mapbox/Mapbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public function __construct(
ClientInterface $client,
string $accessToken,
?string $country = null,
string $geocodingMode = self::GEOCODING_MODE_PLACES
string $geocodingMode = self::GEOCODING_MODE_PLACES,
) {
parent::__construct($client);

Expand Down

0 comments on commit 28eda01

Please sign in to comment.