diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2020-04-09 16:25:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-09 16:25:14 +0200 |
commit | 64510932b8bd7d4d1d490f7da7fb9ebcf21e31c2 (patch) | |
tree | 37fbf7544cbf60faaa4a5935ab1c477d05dfd028 /apps/user_ldap/lib | |
parent | c56a273b39186c509c57ef6bec221d3c4e3d81d3 (diff) | |
parent | 36b3bc8148648eaadcc3769b1624fe1dd4c8bf93 (diff) | |
download | nextcloud-server-64510932b8bd7d4d1d490f7da7fb9ebcf21e31c2.tar.gz nextcloud-server-64510932b8bd7d4d1d490f7da7fb9ebcf21e31c2.zip |
Merge pull request #20384 from nextcloud/techdebt/lowercase-keywords
Use php keywords in lowercase
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/Mapping/AbstractMapping.php | 2 |
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()); |