fix @since annotations (9.1->12)

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2016-12-19 11:27:42 +01:00 committed by Roeland Jago Douma
parent 46adb3eced
commit 3316a9d294
No known key found for this signature in database
GPG Key ID: F941078878347C0C
4 changed files with 8 additions and 8 deletions

View File

@ -66,7 +66,7 @@ class Store implements IStore {
}
/**
* @since 9.2
* @since 12
*
* @return ICredentials the login credentials of the current user
* @throws CredentialsUnavailableException

View File

@ -27,7 +27,7 @@ namespace OCP\Authentication\Exceptions;
use Exception;
/**
* @since 9.2
* @since 12
*/
class CredentialsUnavailableException extends Exception {

View File

@ -25,14 +25,14 @@
namespace OCP\Authentication\LoginCredentials;
/**
* @since 9.2
* @since 12
*/
interface ICredentials {
/**
* Get the user UID
*
* @since 9.2
* @since 12
*
* @return string
*/
@ -41,7 +41,7 @@ interface ICredentials {
/**
* Get the login name the users used to login
*
* @since 9.2
* @since 12
*
* @return string
*/
@ -50,7 +50,7 @@ interface ICredentials {
/**
* Get the password
*
* @since 9.2
* @since 12
*
* @return string
*/

View File

@ -27,14 +27,14 @@ namespace OCP\Authentication\LoginCredentials;
use OCP\Authentication\Exceptions\CredentialsUnavailableException;
/**
* @since 9.2
* @since 12
*/
interface IStore {
/**
* Get login credentials of the currently logged in user
*
* @since 9.2
* @since 12
*
* @throws CredentialsUnavailableException
* @return ICredentials the login credentials of the current user