diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-12-21 14:23:52 +0100 |
---|---|---|
committer | backportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com> | 2023-12-21 13:55:40 +0000 |
commit | 3b0fc10ccc4016428c1359cc51deccb3bd6e05a9 (patch) | |
tree | f821ea6ebaac0746ea860f83984c2421e30f6e63 | |
parent | 26ef10a07ff4550f3f94cb216b5eded6c8e36daf (diff) | |
download | nextcloud-server-3b0fc10ccc4016428c1359cc51deccb3bd6e05a9.tar.gz nextcloud-server-3b0fc10ccc4016428c1359cc51deccb3bd6e05a9.zip |
fix(dav): undeclared `$cache` property
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
-rw-r--r-- | apps/dav/tests/unit/CalDAV/Status/StatusServiceTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/dav/tests/unit/CalDAV/Status/StatusServiceTest.php b/apps/dav/tests/unit/CalDAV/Status/StatusServiceTest.php index 7073c02b8e4..498a0b849fa 100644 --- a/apps/dav/tests/unit/CalDAV/Status/StatusServiceTest.php +++ b/apps/dav/tests/unit/CalDAV/Status/StatusServiceTest.php @@ -49,6 +49,7 @@ class StatusServiceTest extends TestCase { private IAvailabilityCoordinator|MockObject $availabilityCoordinator; private ICacheFactory|MockObject $cacheFactory; private LoggerInterface|MockObject $logger; + private ICache|MockObject $cache; private StatusService $service; protected function setUp(): void { |