diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-10 16:48:31 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-04-10 16:48:31 +0200 |
commit | a7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 (patch) | |
tree | 629f395d91f3cf15497bbfd6597e6df9b081cf36 /apps/user_ldap/lib/Proxy.php | |
parent | 1762a409f954fd9a66e7572704ea9ba7813601b4 (diff) | |
download | nextcloud-server-a7c8d26d31cb1cf69e0e060c53622e545fcfbbb3.tar.gz nextcloud-server-a7c8d26d31cb1cf69e0e060c53622e545fcfbbb3.zip |
Add visibility to all properties and move static keyword
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/user_ldap/lib/Proxy.php')
-rw-r--r-- | apps/user_ldap/lib/Proxy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Proxy.php b/apps/user_ldap/lib/Proxy.php index 7698895eaf0..3cf55f8cd58 100644 --- a/apps/user_ldap/lib/Proxy.php +++ b/apps/user_ldap/lib/Proxy.php @@ -38,7 +38,7 @@ use OCA\User_LDAP\Mapping\UserMapping; use OCA\User_LDAP\User\Manager; abstract class Proxy { - static private $accesses = []; + private static $accesses = []; private $ldap = null; /** @var \OCP\ICache|null */ |