diff options
author | Morris Jobke <hey@morrisjobke.de> | 2020-08-19 19:34:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 19:34:02 +0200 |
commit | c449d5420465a01e0bf5579af8dbb99d64a24133 (patch) | |
tree | 7dcdb282f270f051b1e1c87144556b564dfb2000 /lib/public/IUserSession.php | |
parent | 4c6eb96471b90c41e26bdf2cb3edf2cb15aec613 (diff) | |
parent | 4db7829f43cef3eb615068fbaffba37dadbf2c06 (diff) | |
download | nextcloud-server-c449d5420465a01e0bf5579af8dbb99d64a24133.tar.gz nextcloud-server-c449d5420465a01e0bf5579af8dbb99d64a24133.zip |
Merge pull request #22304 from nextcloud/techdebt/noid/matching-param-names
Use matching parameter names form interfaces and implementations
Diffstat (limited to 'lib/public/IUserSession.php')
-rw-r--r-- | lib/public/IUserSession.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/IUserSession.php b/lib/public/IUserSession.php index d71cde72b30..17c751127fa 100644 --- a/lib/public/IUserSession.php +++ b/lib/public/IUserSession.php @@ -46,12 +46,12 @@ interface IUserSession { /** * Do a user login * - * @param string $user the username + * @param string $uid the username * @param string $password the password * @return bool true if successful * @since 6.0.0 */ - public function login($user, $password); + public function login($uid, $password); /** * Logs the user out including all the session data |