diff options
Diffstat (limited to 'lib/private/files/filesystem.php')
-rw-r--r-- | lib/private/files/filesystem.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/private/files/filesystem.php b/lib/private/files/filesystem.php index 351483d59c1..eef76125311 100644 --- a/lib/private/files/filesystem.php +++ b/lib/private/files/filesystem.php @@ -201,11 +201,13 @@ class Filesystem { private static $loader; /** + * @param string $wrapperName * @param callable $wrapper + * @param int $priority */ - public static function addStorageWrapper($wrapperName, $wrapper) { + public static function addStorageWrapper($wrapperName, $wrapper, $priority = 50) { $mounts = self::getMountManager()->getAll(); - if (!self::getLoader()->addStorageWrapper($wrapperName, $wrapper, $mounts)) { + if (!self::getLoader()->addStorageWrapper($wrapperName, $wrapper, $priority, $mounts)) { // do not re-wrap if storage with this name already existed return; } |