Browse Source

fix @since annotations (9.1->12)

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v12.0.0beta1
Christoph Wurst 7 years ago
parent
commit
3316a9d294
No account linked to committer's email address

+ 1
- 1
lib/private/Authentication/LoginCredentials/Store.php 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

+ 1
- 1
lib/public/Authentication/Exceptions/CredentialsUnavailableException.php View File

@@ -27,7 +27,7 @@ namespace OCP\Authentication\Exceptions;
use Exception;

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


+ 4
- 4
lib/public/Authentication/LoginCredentials/ICredentials.php 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
*/

+ 2
- 2
lib/public/Authentication/LoginCredentials/IStore.php 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

Loading…
Cancel
Save