Skip to content

Commit d4b1233

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Controller/PageController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public function indexFPath(string $path): TemplateResponse {
251251
$this->initialState->provideInitialState('identificationDocumentsWaitingApproval', $file['settings']['identificationDocumentsWaitingApproval'] ?? false);
252252
} catch (LibresignException $e) {
253253
throw $e;
254-
} catch (\Throwable $e) {
254+
} catch (\Throwable) {
255255
throw new LibresignException(json_encode([
256256
'action' => JSActions::ACTION_DO_NOTHING,
257257
'errors' => [['message' => $this->l10n->t('Invalid UUID')]],

0 commit comments

Comments
 (0)