summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorTobia De Koninck <tobia@ledfan.be>2017-10-01 09:15:30 +0200
committerMorris Jobke <hey@morrisjobke.de>2017-12-11 18:18:58 +0100
commit78049af02cb17c0ce20a654445b682cd4df3a674 (patch)
treefd1dd046ffda96d0d8c439ab625b11493752941f /lib
parentf6ef779f97c2abf0543184e58dd27b39aa0ea3bc (diff)
downloadnextcloud-server-78049af02cb17c0ce20a654445b682cd4df3a674.tar.gz
nextcloud-server-78049af02cb17c0ce20a654445b682cd4df3a674.zip
Add @since annotation and add missing new line
Signed-off-by: Tobia De Koninck <tobia@ledfan.be>
Diffstat (limited to 'lib')
-rw-r--r--lib/public/Contacts/ContactsMenu/IContactsStore.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/public/Contacts/ContactsMenu/IContactsStore.php b/lib/public/Contacts/ContactsMenu/IContactsStore.php
index 415c450072d..78b2b29c574 100644
--- a/lib/public/Contacts/ContactsMenu/IContactsStore.php
+++ b/lib/public/Contacts/ContactsMenu/IContactsStore.php
@@ -4,6 +4,9 @@ namespace OCP\Contacts\ContactsMenu;
use OCP\IUser;
+/**
+ * @since 13.0.0
+ */
interface IContactsStore {
@@ -11,6 +14,7 @@ interface IContactsStore {
* @param IUser $user
* @param $filter
* @return IEntry[]
+ * @since 13.0.0
*/
public function getContacts(IUser $user, $filter);
@@ -20,7 +24,8 @@ interface IContactsStore {
* @param integer $shareType
* @param string $shareWith
* @return IEntry|null
+ * @since 13.0.0
*/
public function findOne(IUser $user, $shareType, $shareWith);
-} \ No newline at end of file
+}