chore: fix code style with Laravel Pint

This commit is contained in:
root
2026-05-23 19:05:37 +02:00
parent 0795cd283d
commit 2d8beaa531
38 changed files with 68 additions and 43 deletions
@@ -70,7 +70,7 @@ class DatabaseDiagnostic
return DiagnosticResult::error(
'Required Tables',
'Missing: ' . implode(', ', $missing),
'Run: php artisan migrate'
'Run: php artisan migrate',
);
}
@@ -95,7 +95,7 @@ class DatabaseDiagnostic
return DiagnosticResult::warning(
'Radio Tables',
'Missing: ' . implode(', ', $missing),
'Run radio migration seeder'
'Run radio migration seeder',
);
}