Skip to content

Commit da57e49

Browse files
Remove useless code
1 parent 1f6ecef commit da57e49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Store/PostgreSqlStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public function exists(Key $key): bool
169169
$stmt = $this->getConnection()->prepare($sql);
170170

171171
$stmt->bindValue(':key', $this->getHashedKey($key));
172-
$result = $stmt->execute();
172+
$stmt->execute();
173173

174174
if ($stmt->fetchColumn() > 0) {
175175
// connection is locked, check for lock in internal store

0 commit comments

Comments
 (0)