mirror of
https://github.com/nextcloud/server.git
synced 2026-04-29 10:03:32 -04:00
25 lines
461 B
PHP
25 lines
461 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 IMountProviderArgs {
|
||
|
|
public function __construct(
|
||
|
|
public ICachedMountInfo $mountInfo,
|
||
|
|
public ICacheEntry $cacheEntry,
|
||
|
|
) {
|
||
|
|
}
|
||
|
|
}
|