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