Skip to content

Commit

Permalink
Fix eval return value
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Aug 20, 2023
1 parent a9df23e commit 8ce58a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RedisClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ public function eval(string $script, array $keys = [], array $args = []): mixed
return $this->execute('eval', $script, \count($keys), ...$keys, ...$args);
}

$response->unwrap();
return $response->unwrap();
}

public function select(int $database): void
Expand Down

0 comments on commit 8ce58a2

Please sign in to comment.