diff options
author | Christoph Wurst <christoph@owncloud.com> | 2016-05-02 19:58:19 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-05-11 13:36:46 +0200 |
commit | f0f8bdd495ff958ce536e577e42586090b6bcd8f (patch) | |
tree | c13077c866c0561cf158b5de913c1975721172cd /lib/private/Authentication/Token/DefaultToken.php | |
parent | dff108e97bea1d1b6e6a639fabd64d400acd4347 (diff) | |
download | nextcloud-server-f0f8bdd495ff958ce536e577e42586090b6bcd8f.tar.gz nextcloud-server-f0f8bdd495ff958ce536e577e42586090b6bcd8f.zip |
PHPDoc and other minor fixes
Diffstat (limited to 'lib/private/Authentication/Token/DefaultToken.php')
-rw-r--r-- | lib/private/Authentication/Token/DefaultToken.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/private/Authentication/Token/DefaultToken.php b/lib/private/Authentication/Token/DefaultToken.php index 70562502b76..5dd9dc5b039 100644 --- a/lib/private/Authentication/Token/DefaultToken.php +++ b/lib/private/Authentication/Token/DefaultToken.php @@ -24,6 +24,20 @@ namespace OC\Authentication\Token; use OCP\AppFramework\Db\Entity; +/** + * @method void setId(int $id) + * @method void setUid(string $uid); + * @method void setPassword(string $password) + * @method string getPassword() + * @method void setName(string $name) + * @method string getName() + * @method void setToken(string $token) + * @method string getToken() + * @method void setType(string $type) + * @method int getType() + * @method void setLastActivity(int $lastActivity) + * @method int getLastActivity() + */ class DefaultToken extends Entity implements IToken { /** |