Skip to content

Commit

Permalink
Remove unused exception variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Usbac committed Oct 27, 2024
1 parent 6bbd98a commit 7aefac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/bootstrap/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@
try {
$json = json_decode(file_get_contents($_FILES['db']['tmp_name'] ?? ''), true);
$success = (new \Aurora\App\Migration($db))->import($json['tables'] ?? false);
} catch (\Throwable $e) {
} catch (\Throwable) {
$success = false;
}

Expand Down

0 comments on commit 7aefac3

Please sign in to comment.