mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 16:38:28 +00:00
dae7c159f7
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
24 lines
418 B
PHP
24 lines
418 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\Contacts\ContactsMenu;
|
|
|
|
/**
|
|
* Process contacts menu entries in bulk
|
|
*
|
|
* @since 28.0
|
|
*/
|
|
interface IBulkProvider {
|
|
/**
|
|
* @since 28.0
|
|
* @param list<IEntry> $entries
|
|
* @return void
|
|
*/
|
|
public function process(array $entries): void;
|
|
}
|