diff options
author | Tobia De Koninck <tobia@ledfan.be> | 2017-09-16 13:42:46 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-12-11 18:18:58 +0100 |
commit | f6ef779f97c2abf0543184e58dd27b39aa0ea3bc (patch) | |
tree | d730368e486868726fc6a7df068c8c34a11d75c3 /lib/private/Contacts/ContactsMenu | |
parent | 45971879f525f146c225e1e7f6078ae241f32495 (diff) | |
download | nextcloud-server-f6ef779f97c2abf0543184e58dd27b39aa0ea3bc.tar.gz nextcloud-server-f6ef779f97c2abf0543184e58dd27b39aa0ea3bc.zip |
Make ContactsStore a public API
Signed-off-by: Tobia De Koninck <tobia@ledfan.be>
Diffstat (limited to 'lib/private/Contacts/ContactsMenu')
-rw-r--r-- | lib/private/Contacts/ContactsMenu/ContactsStore.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Contacts/ContactsMenu/ContactsStore.php b/lib/private/Contacts/ContactsMenu/ContactsStore.php index 108ff0d4989..43600470e1f 100644 --- a/lib/private/Contacts/ContactsMenu/ContactsStore.php +++ b/lib/private/Contacts/ContactsMenu/ContactsStore.php @@ -35,8 +35,9 @@ use OCP\IGroupManager; use OCP\IUser; use OCP\IUserManager; use OCP\IUserSession; +use OCP\Contacts\ContactsMenu\IContactsStore; -class ContactsStore { +class ContactsStore implements IContactsStore { /** @var IManager */ private $contactsManager; |