Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2016-12-19 13:27:42 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2017-01-11 21:20:11 +0300
commit3316a9d2940f2fe134bcf4c5fc9193861d23fc90 (patch)
treeecefa142bdaec14773dfce2f8de7f0ccc21d5435 /lib/public/Authentication
parent46adb3eced0386b97540947beb8c305efdc15175 (diff)
fix @since annotations (9.1->12)
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/public/Authentication')
-rw-r--r--lib/public/Authentication/Exceptions/CredentialsUnavailableException.php2
-rw-r--r--lib/public/Authentication/LoginCredentials/ICredentials.php8
-rw-r--r--lib/public/Authentication/LoginCredentials/IStore.php4
3 files changed, 7 insertions, 7 deletions
diff --git a/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php b/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php
index 44ae8d37ffb..9f9e38103f7 100644
--- a/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php
+++ b/lib/public/Authentication/Exceptions/CredentialsUnavailableException.php
@@ -27,7 +27,7 @@ namespace OCP\Authentication\Exceptions;
use Exception;
/**
- * @since 9.2
+ * @since 12
*/
class CredentialsUnavailableException extends Exception {
diff --git a/lib/public/Authentication/LoginCredentials/ICredentials.php b/lib/public/Authentication/LoginCredentials/ICredentials.php
index 46c6f26701f..c5ef9574398 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 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
*/
diff --git a/lib/public/Authentication/LoginCredentials/IStore.php b/lib/public/Authentication/LoginCredentials/IStore.php
index 549f0e7759b..4787b16d982 100644
--- a/lib/public/Authentication/LoginCredentials/IStore.php
+++ b/lib/public/Authentication/LoginCredentials/IStore.php
@@ -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