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
+3 -3
View File
@@ -26,7 +26,7 @@ class HttpDiagnostic
return DiagnosticResult::warning(
'App URL',
'APP_URL not configured properly',
'Set APP_URL in .env to your domain'
'Set APP_URL in .env to your domain',
);
}
@@ -34,7 +34,7 @@ class HttpDiagnostic
return DiagnosticResult::warning(
'App URL',
'Not using HTTPS in production',
'Configure SSL and update APP_URL'
'Configure SSL and update APP_URL',
);
}
@@ -87,7 +87,7 @@ class HttpDiagnostic
return DiagnosticResult::warning(
'HTTP Redirect',
"HTTP returns {$response->status()} instead of redirect",
'Configure web server to redirect HTTP to HTTPS'
'Configure web server to redirect HTTP to HTTPS',
);
} catch (\Exception $e) {
return DiagnosticResult::warning('HTTP Redirect', 'Could not test: ' . $e->getMessage());