Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/groupfolders.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-06-22 19:39:27 +0300
committerCarl Schwan <carl@carlschwan.eu>2022-06-22 19:39:27 +0300
commit2a340a632d3e68a413cc125c26fa920d1992f72b (patch)
tree793cad43e96ebc3804b5ba8f60457290f093c5dd
parent2e87d144bdc68fdef63ba619b028df0fdec50885 (diff)
Fix tests
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
-rw-r--r--lib/Mount/CacheRootPermissionsMask.php2
-rw-r--r--lib/Mount/MountProvider.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Mount/CacheRootPermissionsMask.php b/lib/Mount/CacheRootPermissionsMask.php
index 2c0b83b6..55c43b07 100644
--- a/lib/Mount/CacheRootPermissionsMask.php
+++ b/lib/Mount/CacheRootPermissionsMask.php
@@ -27,7 +27,7 @@ use OC\Files\Cache\Wrapper\CacheWrapper;
use OCP\Files\Cache\ICache;
class CacheRootPermissionsMask extends CacheWrapper {
- protected int $mask;
+ protected $mask;
public function __construct(ICache $cache, int $mask) {
parent::__construct($cache);
diff --git a/lib/Mount/MountProvider.php b/lib/Mount/MountProvider.php
index 94400031..b0cff63d 100644
--- a/lib/Mount/MountProvider.php
+++ b/lib/Mount/MountProvider.php
@@ -67,7 +67,7 @@ class MountProvider implements IMountProvider {
private $mountProviderCollection;
private $connection;
- private bool $allowRootShare;
+ private $allowRootShare;
public function __construct(
IGroupManager $groupProvider,