Skip to content

Commit

Permalink
Hot fix - type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
isublimity committed Dec 21, 2022
1 parent 464eb47 commit 026953b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ public function apply(array $settings_array)
/**
* @param int|bool $flag
*/
public function setReadOnlyUser(mixed $flag):void
public function setReadOnlyUser($flag):void
{
$this->_ReadOnlyUser = $flag;
}
Expand Down
1 change: 1 addition & 0 deletions tests/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public function setUp(): void

$this->client->enableHttpCompression(true);
$this->client->ping();
$this->client->setReadOnlyUser(false);
}

/**
Expand Down

0 comments on commit 026953b

Please sign in to comment.