aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/BackendUtility.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/user_ldap/lib/BackendUtility.php')
-rw-r--r--apps/user_ldap/lib/BackendUtility.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/user_ldap/lib/BackendUtility.php b/apps/user_ldap/lib/BackendUtility.php
index 0e797abb8dc..88d7311cde0 100644
--- a/apps/user_ldap/lib/BackendUtility.php
+++ b/apps/user_ldap/lib/BackendUtility.php
@@ -8,13 +8,12 @@
namespace OCA\User_LDAP;
abstract class BackendUtility {
- protected $access;
-
/**
* constructor, make sure the subclasses call this one!
* @param Access $access an instance of Access for LDAP interaction
*/
- public function __construct(Access $access) {
- $this->access = $access;
+ public function __construct(
+ protected Access $access,
+ ) {
}
}