Skip to content

Commit 80dcc75

Browse files
minor #57868 Remove useless code (alexandre-daubois)
This PR was merged into the 7.2 branch. Discussion ---------- Remove useless code | Q | A | ------------- | --- | Branch? | 7.2 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | - | License | MIT I went through the remaining components and bundles, following my last PRs of this kind. Commits ------- 58941cec67 Remove useless code
2 parents eee302f + da57e49 commit 80dcc75

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)