1
0

IProvider.php 470 B

12345678910111213141516171819202122232425
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Contacts\ContactsMenu;
  8. /**
  9. * Process contacts menu entries
  10. *
  11. * @see IBulkProvider for providers that work with the full dataset at once
  12. *
  13. * @since 12.0
  14. */
  15. interface IProvider {
  16. /**
  17. * @since 12.0
  18. * @param IEntry $entry
  19. * @return void
  20. */
  21. public function process(IEntry $entry);
  22. }