mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
It's not an interface so the I-prefix is inadequate. Signed-off-by: Carl Schwan <carlschwan@kde.org>
24 lines
478 B
PHP
24 lines
478 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\Files\Config;
|
|
|
|
use OCP\Files\Cache\ICacheEntry;
|
|
|
|
/**
|
|
* Data-class containing information related to a mount and its root.
|
|
*
|
|
* @since 33.0.0
|
|
*/
|
|
class MountProviderArgs {
|
|
public function __construct(
|
|
public readonly ICachedMountInfo $mountInfo,
|
|
public readonly ICacheEntry $cacheEntry,
|
|
) {
|
|
}
|
|
}
|