diff --git a/src/Common/Model/Address.php b/src/Common/Model/Address.php index d723c19e5..250384fd6 100644 --- a/src/Common/Model/Address.php +++ b/src/Common/Model/Address.php @@ -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; diff --git a/src/Provider/ArcGISOnline/ArcGISOnline.php b/src/Provider/ArcGISOnline/ArcGISOnline.php index c9eccbc3b..4bdbc38f2 100644 --- a/src/Provider/ArcGISOnline/ArcGISOnline.php +++ b/src/Provider/ArcGISOnline/ArcGISOnline.php @@ -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); diff --git a/src/Provider/AzureMaps/AzureMaps.php b/src/Provider/AzureMaps/AzureMaps.php index a1f7d02ba..85af12d99 100644 --- a/src/Provider/AzureMaps/AzureMaps.php +++ b/src/Provider/AzureMaps/AzureMaps.php @@ -74,7 +74,7 @@ public function __construct( ClientInterface $client, string $subscriptionKey, array $options = [], - string $format = 'json' + string $format = 'json', ) { parent::__construct($client); diff --git a/src/Provider/GoogleMaps/GoogleMaps.php b/src/Provider/GoogleMaps/GoogleMaps.php index fd58fe8bb..193f83a97 100644 --- a/src/Provider/GoogleMaps/GoogleMaps.php +++ b/src/Provider/GoogleMaps/GoogleMaps.php @@ -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; diff --git a/src/Provider/Mapbox/Mapbox.php b/src/Provider/Mapbox/Mapbox.php index be3307370..8d78d7da5 100644 --- a/src/Provider/Mapbox/Mapbox.php +++ b/src/Provider/Mapbox/Mapbox.php @@ -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);