diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-04 14:49:58 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-09 09:49:45 +0100 |
commit | 618805b14f163e630577f9ad701b12fa017a1d70 (patch) | |
tree | 7a4a0d74e31cfc97477c9d3b90de3c327942e00f /lib/private/User | |
parent | 7198bed22d07493f7d5b98e0a0525e8c22b8361f (diff) | |
download | nextcloud-server-618805b14f163e630577f9ad701b12fa017a1d70.tar.gz nextcloud-server-618805b14f163e630577f9ad701b12fa017a1d70.zip |
Fix RedundantPropertyInitializationCheck
For #25839
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/private/User')
-rw-r--r-- | lib/private/User/User.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/User/User.php b/lib/private/User/User.php index 24082926b0d..5bc42a469d7 100644 --- a/lib/private/User/User.php +++ b/lib/private/User/User.php @@ -61,7 +61,7 @@ class User implements IUser { /** @var string */ private $uid; - /** @var string */ + /** @var string|null */ private $displayName; /** @var UserInterface|null */ @@ -128,7 +128,7 @@ class User implements IUser { * @return string */ public function getDisplayName() { - if (!isset($this->displayName)) { + if ($this->displayName === null) { $displayName = ''; if ($this->backend && $this->backend->implementsActions(Backend::GET_DISPLAYNAME)) { // get display name and strip whitespace from the beginning and end of it |