summaryrefslogtreecommitdiffstats
path: root/settings/Controller
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-12-04 17:58:35 +0100
committerMorris Jobke <hey@morrisjobke.de>2018-12-05 00:03:05 +0100
commit5b2222535173312b681ca4ab0de1d01ae28c913b (patch)
tree1fd174c8a236807ead10d1033c82e1e3731b466b /settings/Controller
parentf5ad80fc5774934b5f05c3538cd12218f2b17d21 (diff)
downloadnextcloud-server-5b2222535173312b681ca4ab0de1d01ae28c913b.tar.gz
nextcloud-server-5b2222535173312b681ca4ab0de1d01ae28c913b.zip
Update casing of PHP inside method name
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'settings/Controller')
-rw-r--r--settings/Controller/CheckSetupController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/Controller/CheckSetupController.php b/settings/Controller/CheckSetupController.php
index d757c017e18..45690e986fa 100644
--- a/settings/Controller/CheckSetupController.php
+++ b/settings/Controller/CheckSetupController.php
@@ -527,7 +527,7 @@ Raw output
return [];
}
- protected function isPhpMailerUsed(): bool {
+ protected function isPHPMailerUsed(): bool {
return $this->config->getSystemValue('mail_smtpmode', 'smtp') === 'php';
}
@@ -638,7 +638,7 @@ Raw output
'missingIndexes' => $this->hasMissingIndexes(),
'isSqliteUsed' => $this->isSqliteUsed(),
'databaseConversionDocumentation' => $this->urlGenerator->linkToDocs('admin-db-conversion'),
- 'isPhpMailerUsed' => $this->isPhpMailerUsed(),
+ 'isPHPMailerUsed' => $this->isPHPMailerUsed(),
'mailSettingsDocumentation' => $this->urlGenerator->getAbsoluteURL('index.php/settings/admin'),
'isMemoryLimitSufficient' => $this->memoryInfo->isMemoryLimitSufficient(),
'appDirsWithDifferentOwner' => $this->getAppDirsWithDifferentOwner(),