File tree Expand file tree Collapse file tree 3 files changed +20
-0
lines changed
Expand file tree Collapse file tree 3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 409409 'OCP \\Files \\Mount \\IMountManager ' => $ baseDir . '/lib/public/Files/Mount/IMountManager.php ' ,
410410 'OCP \\Files \\Mount \\IMountPoint ' => $ baseDir . '/lib/public/Files/Mount/IMountPoint.php ' ,
411411 'OCP \\Files \\Mount \\IMovableMount ' => $ baseDir . '/lib/public/Files/Mount/IMovableMount.php ' ,
412+ 'OCP \\Files \\Mount \\IShareOwnerlessMount ' => $ baseDir . '/lib/public/Files/Mount/IShareOwnerlessMount.php ' ,
412413 'OCP \\Files \\Mount \\ISystemMountPoint ' => $ baseDir . '/lib/public/Files/Mount/ISystemMountPoint.php ' ,
413414 'OCP \\Files \\Node ' => $ baseDir . '/lib/public/Files/Node.php ' ,
414415 'OCP \\Files \\NotEnoughSpaceException ' => $ baseDir . '/lib/public/Files/NotEnoughSpaceException.php ' ,
Original file line number Diff line number Diff line change @@ -450,6 +450,7 @@ class ComposerStaticInit749170dad3f5e7f9ca158f5a9f04f6a2
450450 'OCP \\Files \\Mount \\IMountManager ' => __DIR__ . '/../../.. ' . '/lib/public/Files/Mount/IMountManager.php ' ,
451451 'OCP \\Files \\Mount \\IMountPoint ' => __DIR__ . '/../../.. ' . '/lib/public/Files/Mount/IMountPoint.php ' ,
452452 'OCP \\Files \\Mount \\IMovableMount ' => __DIR__ . '/../../.. ' . '/lib/public/Files/Mount/IMovableMount.php ' ,
453+ 'OCP \\Files \\Mount \\IShareOwnerlessMount ' => __DIR__ . '/../../.. ' . '/lib/public/Files/Mount/IShareOwnerlessMount.php ' ,
453454 'OCP \\Files \\Mount \\ISystemMountPoint ' => __DIR__ . '/../../.. ' . '/lib/public/Files/Mount/ISystemMountPoint.php ' ,
454455 'OCP \\Files \\Node ' => __DIR__ . '/../../.. ' . '/lib/public/Files/Node.php ' ,
455456 'OCP \\Files \\NotEnoughSpaceException ' => __DIR__ . '/../../.. ' . '/lib/public/Files/NotEnoughSpaceException.php ' ,
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ /**
6+ * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
7+ * SPDX-License-Identifier: AGPL-3.0-or-later
8+ */
9+
10+ namespace OCP \Files \Mount ;
11+
12+ /**
13+ * Denotes that shares created under this mountpoint will be manageable by everyone with share permission.
14+ *
15+ * @since 31.0.0
16+ */
17+ interface IShareOwnerlessMount {
18+ }
You can’t perform that action at this time.
0 commit comments