nextcloud/lib/public/Files/Config/IAuthoritativeMountProvider.php
Robin Appelman 198d500ac6
feat: add interface to mark mount providers as authoritative
Signed-off-by: Robin Appelman <robin@icewind.nl>
2026-01-09 17:53:42 +01:00

18 lines
361 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Robin Appelman <robin@icewind.nl>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCP\Files\Config;
/**
* Marks a mount provider as being authoritative, meaning that it will proactively update the cached mounts
*
* @since 33.0.0
*/
interface IAuthoritativeMountProvider {
}