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
@@ -30,7 +30,7 @@ class SystemDiagnostic
return DiagnosticResult::error(
'PHP Extensions',
'Missing: ' . implode(', ', $missing),
'Install: sudo apt install php-' . implode(' php-', $missing)
'Install: sudo apt install php-' . implode(' php-', $missing),
);
}
@@ -46,7 +46,7 @@ class SystemDiagnostic
return DiagnosticResult::error(
'PHP Version',
'Current: ' . PHP_VERSION . ' (minimum: 8.1)',
'Upgrade PHP to 8.1 or higher'
'Upgrade PHP to 8.1 or higher',
);
}
@@ -77,7 +77,7 @@ class SystemDiagnostic
return DiagnosticResult::warning(
'Session',
'Using file sessions in production',
'Consider using redis or database sessions'
'Consider using redis or database sessions',
);
}