diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2024-03-28 17:07:13 +0100 |
---|---|---|
committer | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2024-04-02 14:16:21 +0200 |
commit | 47b765552fe76d3527b17e51b797a16012d9767b (patch) | |
tree | 9a2c65e57a3c33f14108a299601cd0121ab354ad /lib/private/Files | |
parent | ec5133b739eabc76271789504b4dbb91a534f552 (diff) | |
download | nextcloud-server-47b765552fe76d3527b17e51b797a16012d9767b.tar.gz nextcloud-server-47b765552fe76d3527b17e51b797a16012d9767b.zip |
fix: Remove incorrect default null value
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/private/Files')
-rw-r--r-- | lib/private/Files/Config/LazyPathCachedMountInfo.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Files/Config/LazyPathCachedMountInfo.php b/lib/private/Files/Config/LazyPathCachedMountInfo.php index 722aec60b3f..b60c69733e5 100644 --- a/lib/private/Files/Config/LazyPathCachedMountInfo.php +++ b/lib/private/Files/Config/LazyPathCachedMountInfo.php @@ -47,7 +47,7 @@ class LazyPathCachedMountInfo extends CachedMountInfo { int $rootId, string $mountPoint, string $mountProvider, - ?int $mountId = null, + ?int $mountId, callable $rootInternalPathCallback, ) { parent::__construct($user, $storageId, $rootId, $mountPoint, $mountProvider, $mountId, self::PATH_PLACEHOLDER); |