From 3b2e916bd6bd100fa18bd5403ae7de9cb4979632 Mon Sep 17 00:00:00 2001 From: Tobia De Koninck Date: Sun, 1 Oct 2017 09:15:30 +0200 Subject: [PATCH] Add @since annotation and add missing new line Signed-off-by: Tobia De Koninck --- lib/public/Contacts/ContactsMenu/IContactsStore.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/public/Contacts/ContactsMenu/IContactsStore.php b/lib/public/Contacts/ContactsMenu/IContactsStore.php index 415c450072d01..78b2b29c574a4 100644 --- a/lib/public/Contacts/ContactsMenu/IContactsStore.php +++ b/lib/public/Contacts/ContactsMenu/IContactsStore.php @@ -4,6 +4,9 @@ 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 @@ public function getContacts(IUser $user, $filter); * @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 +}