diff options
Diffstat (limited to 'apps/files_sharing/tests/SharedMountTest.php')
-rw-r--r-- | apps/files_sharing/tests/SharedMountTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/tests/SharedMountTest.php b/apps/files_sharing/tests/SharedMountTest.php index 2e169f878ce..e320b85cb22 100644 --- a/apps/files_sharing/tests/SharedMountTest.php +++ b/apps/files_sharing/tests/SharedMountTest.php @@ -377,14 +377,14 @@ class SharedMountTest extends TestCase { $caches = []; $cacheFactory = $this->createMock(ICacheFactory::class); $cacheFactory->method('createLocal') - ->willReturnCallback(function(string $prefix) use (&$caches) { + ->willReturnCallback(function (string $prefix) use (&$caches) { if (!isset($caches[$prefix])) { $caches[$prefix] = new ArrayCache($prefix); } return $caches[$prefix]; }); $cacheFactory->method('createDistributed') - ->willReturnCallback(function(string $prefix) use (&$caches) { + ->willReturnCallback(function (string $prefix) use (&$caches) { if (!isset($caches[$prefix])) { $caches[$prefix] = new ArrayCache($prefix); } |