aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorGit'Fellow <12234510+solracsf@users.noreply.github.com>2024-07-08 15:11:35 +0200
committerGitHub <noreply@github.com>2024-07-08 15:11:35 +0200
commitfa84f52c3fbaa40a746b91266f79cc279302f165 (patch)
treeedfb8a4d774a6435e8e14257ea513fcadba11d70 /apps
parent372c9d2ee6e3bcc9c5e19d97390c14a2ea7ace1a (diff)
downloadnextcloud-server-fa84f52c3fbaa40a746b91266f79cc279302f165.tar.gz
nextcloud-server-fa84f52c3fbaa40a746b91266f79cc279302f165.zip
fix: typo
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/settings/lib/SetupChecks/PhpOpcacheSetup.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php b/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php
index 35422078c82..22605012058 100644
--- a/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php
+++ b/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php
@@ -115,7 +115,7 @@ class PhpOpcacheSetup implements ISetupCheck {
public function run(): SetupResult {
// Skip OPcache checks if running from CLI
- if (OC::$CLI && !$this->iniGetWrapper->getBool('opcache.enable_cli')) {
+ if (\OC::$CLI && !$this->iniGetWrapper->getBool('opcache.enable_cli')) {
return SetupResult::success($this->l10n->t('Checking from CLI, OPcache checks have been skipped.'));
}