Skip to content

Commit

Permalink
feat(GroupMountPoint): Implement IShareOwnerlessMount
Browse files Browse the repository at this point in the history
Signed-off-by: provokateurin <kate@provokateurin.de>
  • Loading branch information
provokateurin committed Nov 25, 2024
1 parent b224d3d commit 43b5f7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Mount/GroupMountPoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@

use OC\Files\Mount\MountPoint;
use OC\Files\Storage\Storage;
use OCP\Files\Mount\IShareOwnerlessMount;
use OCP\Files\Mount\ISystemMountPoint;
use OCP\Files\Storage\IStorage;
use OCP\Files\Storage\IStorageFactory;

class GroupMountPoint extends MountPoint implements ISystemMountPoint {
class GroupMountPoint extends MountPoint implements ISystemMountPoint, IShareOwnerlessMount {

Check failure on line 16 in lib/Mount/GroupMountPoint.php

View workflow job for this annotation

GitHub Actions / static-psalm-analysis

UndefinedClass

lib/Mount/GroupMountPoint.php:16:72: UndefinedClass: Class, interface or enum named OCP\Files\Mount\IShareOwnerlessMount does not exist (see https://psalm.dev/019)
public function __construct(
private int $folderId,
IStorage $storage,
Expand Down

0 comments on commit 43b5f7b

Please sign in to comment.