You've already forked Atomcms-edit
chore: fix code style with Laravel Pint
This commit is contained in:
@@ -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',
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user