Merge pull request #4086 from lucasmichot/feat/useless-catch-variable

Remove all useless catch block useless variables.
This commit is contained in:
🏔️ Peak
2024-10-31 16:26:31 +01:00
committed by GitHub
13 changed files with 22 additions and 22 deletions

View File

@@ -36,7 +36,7 @@ class Form extends Component
$url = Url::fromString($firstFqdn);
$host = $url->getHost();
$this->preview_url_template = str($this->application->preview_url_template)->replace('{{domain}}', $host);
} catch (\Exception $e) {
} catch (\Exception) {
$this->dispatch('error', 'Invalid FQDN.');
}
}