From 9d062fb7cc321c80443620616e25f4fb0a4f5b9f Mon Sep 17 00:00:00 2001 From: Git'Fellow <12234510+solracsf@users.noreply.github.com> Date: Mon, 8 Jul 2024 15:11:35 +0200 Subject: [PATCH] fix: typo Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com> --- apps/settings/lib/SetupChecks/PhpOpcacheSetup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php b/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php index f50ec80a3de9b..4077203bb8ed1 100644 --- a/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php +++ b/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php @@ -132,7 +132,7 @@ protected function getOpcacheSetupRecommendations(): array { 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.')); }