diff options
author | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-10-19 13:27:58 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2020-10-21 16:26:48 +0200 |
commit | 59974c1fd582248cb463e3b6773e157fb6d69e51 (patch) | |
tree | 85736ec07bcb4280387638e5e2cb73867d5cb31d | |
parent | 85d5ac5c91933e0697d506e521c38d77cb800571 (diff) | |
download | nextcloud-server-59974c1fd582248cb463e3b6773e157fb6d69e51.tar.gz nextcloud-server-59974c1fd582248cb463e3b6773e157fb6d69e51.zip |
tame psalm. why does it ignore '@property'?
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
-rw-r--r-- | apps/user_ldap/lib/Connection.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/user_ldap/lib/Connection.php b/apps/user_ldap/lib/Connection.php index f4ead2a383d..539e3f28518 100644 --- a/apps/user_ldap/lib/Connection.php +++ b/apps/user_ldap/lib/Connection.php @@ -140,11 +140,7 @@ class Connection extends LDAPUtility { $this->dontDestruct = true; } - /** - * @param string $name - * @return bool|mixed - */ - public function __get($name) { + public function __get(string $name) { if (!$this->configured) { $this->readConfiguration(); } |