Skip to content

Commit

Permalink
Fix CS in Client (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor committed Aug 2, 2024
1 parent f11a89f commit e79bf7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -1152,12 +1152,12 @@ public function __call($name, $args)

if ($this->isMulti) {
$execResponse = array_pop($response);
if(!empty($execResponse)) {
if (!empty($execResponse)) {
foreach ($queuedResponses as $key => $command) {
list($name, $arguments) = $command;
$response[] = $this->decode_reply($name, $execResponse[$key], $arguments);
}
}
}
}
} catch (CredisException $e) {
// the connection on redis's side is likely in a bad state, force it closed to abort the pipeline/transaction
Expand Down

0 comments on commit e79bf7a

Please sign in to comment.