use correct IUser in interface

This commit is contained in:
Jörn Friedrich Dreyer 2014-07-15 17:41:44 +02:00
parent bf657883d2
commit b3106c321c
1 changed files with 2 additions and 2 deletions

View File

@ -52,14 +52,14 @@ interface IUserSession {
/**
* set the currently active user
*
* @param \OCP\User|null $user
* @param \OCP\IUser|null $user
*/
public function setUser($user);
/**
* get the current active user
*
* @return \OCP\User
* @return \OCP\IUser
*/
public function getUser();
}