Skip to content

Commit

Permalink
Check & fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
marco76tv authored and github-actions[bot] committed Dec 12, 2023
1 parent 579bf80 commit 6df7472
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Filament/Pages/BackupMysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ protected function getViewData(): array
{
Assert::isArray($connections = config('database.connections'));

$connections = array_filter($connections, fn ($item): bool => $item['driver'] === 'mysql');
$connections = array_filter($connections, fn ($item): bool => 'mysql' === $item['driver']);

// $connections=collect($connections)->keyBy('database');
return ['connections' => $connections];
Expand Down
2 changes: 1 addition & 1 deletion docs/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'docsearchIndexName' => env('DOCSEARCH_INDEX'),

// navigation menu
'navigation' => require_once('navigation.php'),
'navigation' => require_once ('navigation.php'),

// helpers
'isActive' => function ($page, $path) {
Expand Down

0 comments on commit 6df7472

Please sign in to comment.