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 d4834ff commit b31d495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/database/Restore.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
try {
$json = json_decode(file_get_contents($file), true);
$success = (new \Aurora\App\Migration($this->config['db']))->import($json['tables'] ?? false);
} catch (\Throwable $e) {
} catch (\Throwable) {
$success = false;
}

Expand Down

0 comments on commit b31d495

Please sign in to comment.