Skip to content

Commit

Permalink
🚨 Apply PHP CS Fixer fixes (#1219)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelien authored Mar 2, 2024
1 parent 6500691 commit 746cd81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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 All @@ -84,7 +84,7 @@ public static function token(
* @param string $token ArcGIS World Geocoding Service token
* Required for the geocodeAddresses endpoint
*/
public function __construct(ClientInterface $client, string $sourceCountry = null, string $token = null)
public function __construct(ClientInterface $client, ?string $sourceCountry = null, ?string $token = null)
{
parent::__construct($client);

Expand Down

0 comments on commit 746cd81

Please sign in to comment.