diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-05-30 15:01:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 15:01:15 +0200 |
commit | 3aab6b23271fdbc8263228b599cc6e78af921b2a (patch) | |
tree | e0de4c2c86d5a36dbdcafa4a42ad3e1dbcbc1920 /lib/public | |
parent | 41fc07896af5ec6ea54b753bb532c3902c3388a5 (diff) | |
download | nextcloud-server-3aab6b23271fdbc8263228b599cc6e78af921b2a.tar.gz nextcloud-server-3aab6b23271fdbc8263228b599cc6e78af921b2a.zip |
chore: adjust php comment usage hint
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/Contacts/IManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Contacts/IManager.php b/lib/public/Contacts/IManager.php index c94947e2a35..f19e72e0763 100644 --- a/lib/public/Contacts/IManager.php +++ b/lib/public/Contacts/IManager.php @@ -35,7 +35,7 @@ interface IManager { * Following function shows how to search for contacts for the name and the email address. * * public static function getMatchingRecipient($term) { - * $cm = \OC::$server->get(\OCP\Contacts\IManager::class); + * $cm = \OCP\Server::get(\OCP\Contacts\IManager::class); * // The API is not active -> nothing to do * if (!$cm->isEnabled()) { * return array(); |