Skip to content

Commit 77cba91

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Controller/CrlApiController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public function revoke(
152152
'success' => false,
153153
'message' => $e->getMessage(),
154154
], Http::STATUS_BAD_REQUEST);
155-
} catch (\Exception $e) {
155+
} catch (\Exception) {
156156
return new DataResponse([
157157
'success' => false,
158158
'message' => 'An error occurred while revoking the certificate',

0 commit comments

Comments
 (0)