Skip to content

Commit

Permalink
add @SInCE annotations and document methods
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristophWurst committed Nov 8, 2016
1 parent b109404 commit ec13862
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/public/Authentication/LoginCredentials/ICredentials.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,28 @@
interface ICredentials {

/**
* Get the user UID
*
* @since 9.2
*
* @return string
*/
public function getUID();

/**
* Get the login name the users used to login
*
* @since 9.2
*
* @return string
*/
public function getLoginName();

/**
* Get the password
*
* @since 9.2
*
* @return string
*/
public function getPassword();
Expand Down
2 changes: 2 additions & 0 deletions lib/public/Authentication/LoginCredentials/IStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@
interface IStore {

/**
* Get login credentials of the currently logged in user
*
* @since 9.2
*
* @throws CredentialsUnavailableException
Expand Down

0 comments on commit ec13862

Please sign in to comment.