Skip to content

Commit

Permalink
DEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Dec 3, 2024
1 parent 4a3353b commit 387d403
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions tests/mutex/PHPRedisMutexTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,16 @@
if (\PHP_MAJOR_VERSION >= 8) {
trait RedisTestTrait
{
/**
* @param bool $script
* @param bool $args
* @param bool $numKeys
*/
#[\Override]
public function eval($script, $args = [], $numKeys = 0): mixed
{
return $this->_eval($script, $args, $numKeys);
}

/**
* @param bool $key
* @param bool $value
* @param bool $options
* @param resource $key
* @param resource $value
* @param resource $options
*/
#[\Override]
public function set($key, $value, $options = null): /* \Redis|string| */ bool
Expand All @@ -36,10 +31,6 @@ public function set($key, $value, $options = null): /* \Redis|string| */ bool
trait RedisTestTrait
{
/**
* @param bool $script
* @param bool $args
* @param bool $numKeys
*
* @return mixed
*/
#[\Override]
Expand All @@ -49,9 +40,9 @@ public function eval($script, $args = [], $numKeys = 0)
}

/**
* @param bool $key
* @param bool $value
* @param bool $options
* @param resource $key
* @param resource $value
* @param resource $options
*
* @return \Redis|string|bool
*/
Expand Down

0 comments on commit 387d403

Please sign in to comment.