nextcloud/lib/public/User/Backend/ILimitAwareCountUsersBackend.php
Ferdinand Thiessen 81752fc9ed
chore(ocp): add Override attribute to all OCP classes
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2026-04-28 21:29:27 +02:00

24 lines
590 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\User\Backend;
/**
* @since 31.0.0
*/
interface ILimitAwareCountUsersBackend extends ICountUsersBackend {
/**
* @since 31.0.0
*
* @param int $limit Limit to stop counting users if there are more than $limit. 0 to disable limiting.
* @return int|false The number of users (may be limited to $limit) on success false on failure
*/
#[\Override]
public function countUsers(int $limit = 0): int|false;
}