Skip to content

Commit 8bc431f

Browse files
refactor(rector): drop unused catch variable in CrlMapper
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent d4b1233 commit 8bc431f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Db/CrlMapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public function isInvalidAt(string $serialNumber, ?DateTime $checkDate = null):
158158

159159
try {
160160
$certificate = $this->findBySerialNumber($serialNumber);
161-
} catch (DoesNotExistException $e) {
161+
} catch (DoesNotExistException) {
162162
return false;
163163
}
164164

0 commit comments

Comments
 (0)