summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 14:04:56 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-09 14:04:56 +0200
commit36b3bc8148648eaadcc3769b1624fe1dd4c8bf93 (patch)
treea9f8cda485a75c2e1b9afd559beeb3ded4456942 /apps/user_ldap/lib
parent66b743385e3e8cadb6d848cf64e1d86da2fd81b3 (diff)
downloadnextcloud-server-36b3bc8148648eaadcc3769b1624fe1dd4c8bf93.tar.gz
nextcloud-server-36b3bc8148648eaadcc3769b1624fe1dd4c8bf93.zip
Use php keywords in lowercase
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r--apps/user_ldap/lib/Mapping/AbstractMapping.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Mapping/AbstractMapping.php b/apps/user_ldap/lib/Mapping/AbstractMapping.php
index 14075da5c0e..5d445af6b7e 100644
--- a/apps/user_ldap/lib/Mapping/AbstractMapping.php
+++ b/apps/user_ldap/lib/Mapping/AbstractMapping.php
@@ -289,7 +289,7 @@ abstract class AbstractMapping {
* @return bool true on success, false when at least one row was not
* deleted
*/
- public function clearCb(Callable $preCallback, Callable $postCallback): bool {
+ public function clearCb(callable $preCallback, callable $postCallback): bool {
$picker = $this->dbc->getQueryBuilder();
$picker->select('owncloud_name')
->from($this->getTableName());