Skip to content

Commit

Permalink
fix @SInCE annotations (9.1->12)
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
  • Loading branch information
ChristophWurst committed Dec 19, 2016
1 parent bbb5eaa commit cc309c9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/private/Authentication/LoginCredentials/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function setSession(ISession $session) {
}

/**
* @since 9.2
* @since 11
*
* @return ICredentials the login credentials of the current user
* @throws CredentialsUnavailableException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
use Exception;

/**
* @since 9.2
* @since 11
*/
class CredentialsUnavailableException extends Exception {

Expand Down
8 changes: 4 additions & 4 deletions lib/public/Authentication/LoginCredentials/ICredentials.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
namespace OCP\Authentication\LoginCredentials;

/**
* @since 9.2
* @since 11
*/
interface ICredentials {

/**
* Get the user UID
*
* @since 9.2
* @since 11
*
* @return string
*/
Expand All @@ -41,7 +41,7 @@ public function getUID();
/**
* Get the login name the users used to login
*
* @since 9.2
* @since 11
*
* @return string
*/
Expand All @@ -50,7 +50,7 @@ public function getLoginName();
/**
* Get the password
*
* @since 9.2
* @since 11
*
* @return string
*/
Expand Down
4 changes: 2 additions & 2 deletions lib/public/Authentication/LoginCredentials/IStore.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
use OCP\Authentication\Exceptions\CredentialsUnavailableException;

/**
* @since 9.2
* @since 11
*/
interface IStore {

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

0 comments on commit cc309c9

Please sign in to comment.