diff options
author | Git'Fellow <12234510+solracsf@users.noreply.github.com> | 2024-07-08 15:11:35 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-08-01 18:03:36 +0000 |
commit | 356c49d0267411d76c17ad1a573df411d1b72f75 (patch) | |
tree | 4bdb5b9c68943e4b459f7b934c3ecef1a930bb54 /apps | |
parent | 48309c7bc7445eb2671fbc212874d3147e3274ce (diff) | |
download | nextcloud-server-356c49d0267411d76c17ad1a573df411d1b72f75.tar.gz nextcloud-server-356c49d0267411d76c17ad1a573df411d1b72f75.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.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php b/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php index f50ec80a3de..4077203bb8e 100644 --- a/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php +++ b/apps/settings/lib/SetupChecks/PhpOpcacheSetup.php @@ -132,7 +132,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.')); } |