Browse Source

Fix a doctype in OCP for IAddressBook

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
tags/v25.0.0beta1
Thomas Citharel 2 years ago
parent
commit
28b0da59ce
No account linked to committer's email address

+ 2
- 1
apps/dav/lib/CardDAV/AddressBookImpl.php View File

@@ -12,6 +12,7 @@
* @author Joas Schilling <coding@schilljs.com>
* @author John Molakvoæ <skjnldsv@protonmail.com>
* @author Julius Härtl <jus@bitgrid.net>
* @author Thomas Citharel <nextcloud@tcit.fr>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @license AGPL-3.0
@@ -206,7 +207,7 @@ class AddressBookImpl implements IAddressBook {
}

/**
* @param object $id the unique identifier to a contact
* @param int $id the unique identifier to a contact
* @return bool successful or not
* @since 5.0.0
*/

+ 2
- 1
lib/private/ContactsManager.php View File

@@ -6,6 +6,7 @@
* @author Joas Schilling <coding@schilljs.com>
* @author John Molakvoæ <skjnldsv@protonmail.com>
* @author Morris Jobke <hey@morrisjobke.de>
* @author Thomas Citharel <nextcloud@tcit.fr>
* @author Thomas Müller <thomas.mueller@tmit.eu>
* @author Tobia De Koninck <tobia@ledfan.be>
*
@@ -85,7 +86,7 @@ class ContactsManager implements IManager {
/**
* This function can be used to delete the contact identified by the given id
*
* @param object $id the unique identifier to a contact
* @param int $id the unique identifier to a contact
* @param string $address_book_key identifier of the address book in which the contact shall be deleted
* @return bool successful or not
*/

+ 1
- 1
lib/public/Contacts/IManager.php View File

@@ -105,7 +105,7 @@ interface IManager {
/**
* This function can be used to delete the contact identified by the given id
*
* @param object $id the unique identifier to a contact
* @param int $id the unique identifier to a contact
* @param string $address_book_key identifier of the address book in which the contact shall be deleted
* @return bool successful or not
* @since 6.0.0

+ 2
- 1
lib/public/IAddressBook.php View File

@@ -10,6 +10,7 @@
* @author Morris Jobke <hey@morrisjobke.de>
* @author Robin McCorkell <robin@mccorkell.me.uk>
* @author Roeland Jago Douma <roeland@famdouma.nl>
* @author Thomas Citharel <nextcloud@tcit.fr>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* @license AGPL-3.0
@@ -97,7 +98,7 @@ namespace OCP {
public function getPermissions();

/**
* @param object $id the unique identifier to a contact
* @param int $id the unique identifier to a contact
* @return bool successful or not
* @since 5.0.0
*/

Loading…
Cancel
Save