Skip to content

Commit

Permalink
feat(GroupMountPoint): Implement IShareCoOwnerMount
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin committed Nov 4, 2024
1 parent 05e6c25 commit 5059e60
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\IShareCoOwnerMount;
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, IShareCoOwnerMount {

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\IShareCoOwnerMount does not exist (see https://psalm.dev/019)
public function __construct(
private int $folderId,
IStorage $storage,
Expand Down

0 comments on commit 5059e60

Please sign in to comment.