From: Côme Chilliet Date: Thu, 28 Mar 2024 16:07:13 +0000 (+0100) Subject: fix: Remove incorrect default null value X-Git-Tag: v30.0.0beta1~694^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=47b765552fe76d3527b17e51b797a16012d9767b;p=nextcloud-server.git fix: Remove incorrect default null value Signed-off-by: Côme Chilliet --- 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);