Skip to content

Commit

Permalink
CLI-1436: PHP 8.4 compatibility (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell authored Nov 25, 2024
1 parent 50018d6 commit c3acefe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Connector/Connector.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class Connector implements ConnectorInterface
/**
* @param array<string, string> $config
*/
public function __construct(array $config, string $base_uri = null, string $url_access_token = null)
public function __construct(array $config, ?string $base_uri = null, ?string $url_access_token = null)
{
$this->baseUri = ConnectorInterface::BASE_URI;
if ($base_uri) {
Expand Down

0 comments on commit c3acefe

Please sign in to comment.