Skip to content

Commit

Permalink
Explicitly mark the version number as nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed Sep 9, 2024
1 parent 4475a11 commit dd9560b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Firebase/RemoteConfig/ApiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function __construct(string $projectId, private readonly ClientInterface
*
* @throws RemoteConfigException
*/
public function getTemplate(VersionNumber|int|string $versionNumber = null): ResponseInterface
public function getTemplate(VersionNumber|int|string|null $versionNumber = null): ResponseInterface
{
return $this->requestApi('GET', 'remoteConfig', [
'query' => array_filter([
Expand Down

0 comments on commit dd9560b

Please sign in to comment.