fix @since annotations (9.1->12)
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
46adb3eced
commit
3316a9d294
|
@ -66,7 +66,7 @@ class Store implements IStore {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 9.2
|
* @since 12
|
||||||
*
|
*
|
||||||
* @return ICredentials the login credentials of the current user
|
* @return ICredentials the login credentials of the current user
|
||||||
* @throws CredentialsUnavailableException
|
* @throws CredentialsUnavailableException
|
||||||
|
|
|
@ -27,7 +27,7 @@ namespace OCP\Authentication\Exceptions;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 9.2
|
* @since 12
|
||||||
*/
|
*/
|
||||||
class CredentialsUnavailableException extends Exception {
|
class CredentialsUnavailableException extends Exception {
|
||||||
|
|
||||||
|
|
|
@ -25,14 +25,14 @@
|
||||||
namespace OCP\Authentication\LoginCredentials;
|
namespace OCP\Authentication\LoginCredentials;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 9.2
|
* @since 12
|
||||||
*/
|
*/
|
||||||
interface ICredentials {
|
interface ICredentials {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the user UID
|
* Get the user UID
|
||||||
*
|
*
|
||||||
* @since 9.2
|
* @since 12
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
|
@ -41,7 +41,7 @@ interface ICredentials {
|
||||||
/**
|
/**
|
||||||
* Get the login name the users used to login
|
* Get the login name the users used to login
|
||||||
*
|
*
|
||||||
* @since 9.2
|
* @since 12
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
|
@ -50,7 +50,7 @@ interface ICredentials {
|
||||||
/**
|
/**
|
||||||
* Get the password
|
* Get the password
|
||||||
*
|
*
|
||||||
* @since 9.2
|
* @since 12
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -27,14 +27,14 @@ namespace OCP\Authentication\LoginCredentials;
|
||||||
use OCP\Authentication\Exceptions\CredentialsUnavailableException;
|
use OCP\Authentication\Exceptions\CredentialsUnavailableException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 9.2
|
* @since 12
|
||||||
*/
|
*/
|
||||||
interface IStore {
|
interface IStore {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get login credentials of the currently logged in user
|
* Get login credentials of the currently logged in user
|
||||||
*
|
*
|
||||||
* @since 9.2
|
* @since 12
|
||||||
*
|
*
|
||||||
* @throws CredentialsUnavailableException
|
* @throws CredentialsUnavailableException
|
||||||
* @return ICredentials the login credentials of the current user
|
* @return ICredentials the login credentials of the current user
|
||||||
|
|
Loading…
Reference in New Issue