Skip to content

Commit

Permalink
Fix property promotions
Browse files Browse the repository at this point in the history
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
  • Loading branch information
solracsf authored Jul 26, 2023
1 parent deea8dd commit 49bb474
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions lib/Mount/MountProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,8 @@
use OCP\IUserSession;

class MountProvider implements IMountProvider {
private IGroupManager $groupProvider;
private callable $rootProvider;
private ?Folder $root = null;
private FolderManager $folderManager;
private ACLManagerFactory $aclManagerFactory;
private IUserSession $userSession;
private IRequest $request;
private ISession $session;
private IMountProviderCollection $mountProviderCollection;
private IDBConnection $connection;
private ICache $cache;
private ?int $rootStorageId = null;
private bool $allowRootShare;
private bool $enableEncryption;

public function __construct(
private IGroupManager $groupProvider,
Expand All @@ -73,8 +61,8 @@ public function __construct(
private IMountProviderCollection $mountProviderCollection,
private IDBConnection $connection,
private ICache $cache,
bool $allowRootShare,
bool $enableEncryption
private bool $allowRootShare,
private bool $enableEncryption
) {
$this->allowRootShare = $allowRootShare;
$this->enableEncryption = $enableEncryption;
Expand Down

0 comments on commit 49bb474

Please sign in to comment.