Add @since annotation and add missing new line

Signed-off-by: Tobia De Koninck <tobia@ledfan.be>
This commit is contained in:
Tobia De Koninck 2017-10-01 09:15:30 +02:00 committed by Morris Jobke
parent f6ef779f97
commit 78049af02c
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
1 changed files with 6 additions and 1 deletions

View File

@ -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);
}
}