0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-16 09:14:07 +00:00

fix: Remove incorrect default null value

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2024-03-28 17:07:13 +01:00 committed by Côme Chilliet
parent 0b332ceac2
commit 4311f60ebb

View file

@ -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);