Skip to content

Commit 026953b

Browse files
committed
Hot fix - type errors
1 parent 464eb47 commit 026953b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ public function apply(array $settings_array)
208208
/**
209209
* @param int|bool $flag
210210
*/
211-
public function setReadOnlyUser(mixed $flag):void
211+
public function setReadOnlyUser($flag):void
212212
{
213213
$this->_ReadOnlyUser = $flag;
214214
}

tests/ClientTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public function setUp(): void
3030

3131
$this->client->enableHttpCompression(true);
3232
$this->client->ping();
33+
$this->client->setReadOnlyUser(false);
3334
}
3435

3536
/**

0 commit comments

Comments
 (0)