Skip to content

Commit

Permalink
fix(Storage): Implement IConstructableStorage
Browse files Browse the repository at this point in the history
Signed-off-by: provokateurin <[email protected]>
  • Loading branch information
provokateurin committed Sep 29, 2024
1 parent b84fb2b commit a1676ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/ACL/ACLStorageWrapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@
use OCP\Constants;
use OCP\Files\Cache\ICache;
use OCP\Files\Cache\IScanner;
use OCP\Files\Storage\IConstructableStorage;
use OCP\Files\Storage\IStorage;

class ACLStorageWrapper extends Wrapper {
class ACLStorageWrapper extends Wrapper implements IConstructableStorage {
private ACLManager $aclManager;
private bool $inShare;

Expand Down
3 changes: 2 additions & 1 deletion lib/Mount/GroupFolderStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,12 @@
use OCP\Files\Cache\ICache;
use OCP\Files\Cache\ICacheEntry;
use OCP\Files\Cache\IScanner;
use OCP\Files\Storage\IConstructableStorage;
use OCP\Files\Storage\IStorage;
use OCP\IUser;
use OCP\IUserSession;

class GroupFolderStorage extends Quota {
class GroupFolderStorage extends Quota implements IConstructableStorage {
private int $folderId;
private ICacheEntry $rootEntry;
private IUserSession $userSession;
Expand Down

0 comments on commit a1676ee

Please sign in to comment.