diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-06 16:33:01 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-06 16:38:25 +0100 |
commit | df9e2b828aacd31c16028b4eca4d0e220e6929e7 (patch) | |
tree | 6918e728f4f88585b74875f1beb28706f8fdd05d /lib/private/User | |
parent | ed81337461c8c7763eb07a489fc980491dc9c046 (diff) | |
download | nextcloud-server-df9e2b828aacd31c16028b4eca4d0e220e6929e7.tar.gz nextcloud-server-df9e2b828aacd31c16028b4eca4d0e220e6929e7.zip |
Fix mismatching docblock return types
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/User')
-rw-r--r-- | lib/private/User/Session.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/User/Session.php b/lib/private/User/Session.php index 4aa9074b4a4..602f779c901 100644 --- a/lib/private/User/Session.php +++ b/lib/private/User/Session.php @@ -317,7 +317,7 @@ class Session implements IUserSession, Emitter { } /** - * @return mixed + * @return null|string */ public function getImpersonatingUserID(): ?string { |