Compare commits

...

1 Commits

Author SHA1 Message Date
Maxence Lange a780203600 required after optional
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
2021-04-23 11:56:43 -01:00
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,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 = null, $rootInternalPath = '', $internalPath = '') {
parent::__construct($user, $storageId, $rootId, $mountPoint, $mountId, $rootInternalPath);
$this->internalPath = $internalPath;
}