diff --git a/lib/private/Authentication/LoginCredentials/Store.php b/lib/private/Authentication/LoginCredentials/Store.php index 17749c63b3dbf..e63f977ec8322 100644 --- a/lib/private/Authentication/LoginCredentials/Store.php +++ b/lib/private/Authentication/LoginCredentials/Store.php @@ -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 diff --git a/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php b/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php index 44ae8d37ffb03..18ae11bed2264 100644 --- a/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php +++ b/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php @@ -27,7 +27,7 @@ use Exception; /** - * @since 9.2 + * @since 11 */ class CredentialsUnavailableException extends Exception { diff --git a/lib/public/Authentication/LoginCredentials/ICredentials.php b/lib/public/Authentication/LoginCredentials/ICredentials.php index 46c6f26701faf..5763a1f04d317 100644 --- a/lib/public/Authentication/LoginCredentials/ICredentials.php +++ b/lib/public/Authentication/LoginCredentials/ICredentials.php @@ -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 */ @@ -41,7 +41,7 @@ public function getUID(); /** * Get the login name the users used to login * - * @since 9.2 + * @since 11 * * @return string */ @@ -50,7 +50,7 @@ public function getLoginName(); /** * Get the password * - * @since 9.2 + * @since 11 * * @return string */ diff --git a/lib/public/Authentication/LoginCredentials/IStore.php b/lib/public/Authentication/LoginCredentials/IStore.php index 549f0e7759b81..416fbe600f7e0 100644 --- a/lib/public/Authentication/LoginCredentials/IStore.php +++ b/lib/public/Authentication/LoginCredentials/IStore.php @@ -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