summaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Config
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2021-06-07 23:30:59 +0200
committerGitHub <noreply@github.com>2021-06-07 23:30:59 +0200
commit2ae60b42ab87152d8b918aa289c974c42d267113 (patch)
tree71e87e066471b6e9e491470a60d666cce5771798 /lib/private/Files/Config
parentae4907b6c95b7ac5d36ef358048c7acafd517c07 (diff)
parent7990f95558ac2b7fac3b9f77dcbdc3c74b05785b (diff)
downloadnextcloud-server-2ae60b42ab87152d8b918aa289c974c42d267113.tar.gz
nextcloud-server-2ae60b42ab87152d8b918aa289c974c42d267113.zip
Merge pull request #26494 from rigrig/fix-php8-deprecations
Fix some php 8 warnings
Diffstat (limited to 'lib/private/Files/Config')
-rw-r--r--lib/private/Files/Config/CachedMountFileInfo.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Config/CachedMountFileInfo.php b/lib/private/Files/Config/CachedMountFileInfo.php
index a179b9aef8b..7fdc26f7d53 100644
--- a/lib/private/Files/Config/CachedMountFileInfo.php
+++ b/lib/private/Files/Config/CachedMountFileInfo.php
@@ -30,7 +30,7 @@ class CachedMountFileInfo extends CachedMountInfo implements ICachedMountFileInf
/** @var string */
private $internalPath;
- public function __construct(IUser $user, $storageId, $rootId, $mountPoint, $mountId = null, $rootInternalPath = '', $internalPath) {
+ public function __construct(IUser $user, $storageId, $rootId, $mountPoint, $mountId, $rootInternalPath, $internalPath) {
parent::__construct($user, $storageId, $rootId, $mountPoint, $mountId, $rootInternalPath);
$this->internalPath = $internalPath;
}