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
@@ -36,7 +36,7 @@ class SecurityDiagnostic
return DiagnosticResult::error(
'Debug Mode',
'Debug mode is enabled in production',
'Set APP_DEBUG=false in .env'
'Set APP_DEBUG=false in .env',
);
}
@@ -56,7 +56,7 @@ class SecurityDiagnostic
return DiagnosticResult::warning(
'.env File',
'File appears to be on a single line',
'Ensure .env has proper line breaks'
'Ensure .env has proper line breaks',
);
}
@@ -81,7 +81,7 @@ class SecurityDiagnostic
return DiagnosticResult::error(
'File Permissions',
'Not writable: ' . implode(', ', $issues),
'Run: chmod -R 775 storage bootstrap/cache'
'Run: chmod -R 775 storage bootstrap/cache',
);
}