Skip to content

Commit

Permalink
refactor: removed unused variable in catch by Rector
Browse files Browse the repository at this point in the history
  • Loading branch information
abdelhamiderrahmouni committed Jan 16, 2025
1 parent 6891f6f commit 5d92526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Providers/Filament/AdminPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function panel(Panel $panel): Panel
try {
$brandName = settings()->get('general.site_name');
$brandLogoHeight = settings()->get('general.site_logo_height');
} catch (Throwable $e) {
} catch (Throwable) {
$brandName = null;
$brandLogoHeight = null;
}
Expand Down

0 comments on commit 5d92526

Please sign in to comment.