Skip to content

Commit 8a1f883

Browse files
committed
Format code
1 parent 7152f3d commit 8a1f883

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/BaseRedis.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ public function multi($mode = \Redis::MULTI)
145145
$this->pool->close(null);
146146
throw $e;
147147
}
148-
148+
149149
$this->multiOnGoing = true;
150150
}
151151

@@ -159,13 +159,13 @@ public function exec()
159159
}
160160

161161
try {
162-
$result = $this->connection->exec();
163-
} catch (\RedisException $e) {
164-
$this->multiOnGoing = false;
165-
$this->pool->close(null);
166-
throw $e;
167-
}
168-
162+
$result = $this->connection->exec();
163+
} catch (\RedisException $e) {
164+
$this->multiOnGoing = false;
165+
$this->pool->close(null);
166+
throw $e;
167+
}
168+
169169
$this->multiOnGoing = false;
170170

171171
$this->pool->close($this->connection);

0 commit comments

Comments
 (0)