diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-01-19 19:05:23 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-01-19 19:05:23 +0100 |
commit | 3c9ceffa7ca466a2d2a2d221b3400c56012f3aae (patch) | |
tree | b5de2be223481acc1bf6917eca6f0d2bc0537cf9 | |
parent | d42d8b79e0c83f57336b9c135711e33d9c9afa5f (diff) | |
download | nextcloud-server-3c9ceffa7ca466a2d2a2d221b3400c56012f3aae.tar.gz nextcloud-server-3c9ceffa7ca466a2d2a2d221b3400c56012f3aae.zip |
chore(dav): Remove useless var tag
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
4 files changed, 0 insertions, 6 deletions
diff --git a/apps/dav/lib/CalDAV/WebcalCaching/RefreshWebcalService.php b/apps/dav/lib/CalDAV/WebcalCaching/RefreshWebcalService.php index eadeea3457c..8928d05b93c 100644 --- a/apps/dav/lib/CalDAV/WebcalCaching/RefreshWebcalService.php +++ b/apps/dav/lib/CalDAV/WebcalCaching/RefreshWebcalService.php @@ -55,13 +55,10 @@ use function count; class RefreshWebcalService { - /** @var CalDavBackend */ private CalDavBackend $calDavBackend; - /** @var IClientService */ private IClientService $clientService; - /** @var IConfig */ private IConfig $config; /** @var LoggerInterface */ diff --git a/apps/dav/tests/unit/BackgroundJob/PruneOutdatedSyncTokensJobTest.php b/apps/dav/tests/unit/BackgroundJob/PruneOutdatedSyncTokensJobTest.php index 1de56b37d80..8438d1865d0 100644 --- a/apps/dav/tests/unit/BackgroundJob/PruneOutdatedSyncTokensJobTest.php +++ b/apps/dav/tests/unit/BackgroundJob/PruneOutdatedSyncTokensJobTest.php @@ -55,7 +55,6 @@ class PruneOutdatedSyncTokensJobTest extends TestCase { /** @var LoggerInterface|MockObject*/ private $logger; - /** @var PruneOutdatedSyncTokensJob */ private PruneOutdatedSyncTokensJob $backgroundJob; protected function setUp(): void { diff --git a/apps/dav/tests/unit/Listener/ActivityUpdaterListenerTest.php b/apps/dav/tests/unit/Listener/ActivityUpdaterListenerTest.php index 03c4046991c..24daf088679 100644 --- a/apps/dav/tests/unit/Listener/ActivityUpdaterListenerTest.php +++ b/apps/dav/tests/unit/Listener/ActivityUpdaterListenerTest.php @@ -41,7 +41,6 @@ class ActivityUpdaterListenerTest extends TestCase { private $activityBackend; /** @var LoggerInterface|MockObject */ private $logger; - /** @var ActivityUpdaterListener */ private ActivityUpdaterListener $listener; protected function setUp(): void { diff --git a/apps/dav/tests/unit/Settings/CalDAVSettingsTest.php b/apps/dav/tests/unit/Settings/CalDAVSettingsTest.php index 4b1fad717cb..08cc2959ef9 100644 --- a/apps/dav/tests/unit/Settings/CalDAVSettingsTest.php +++ b/apps/dav/tests/unit/Settings/CalDAVSettingsTest.php @@ -44,7 +44,6 @@ class CalDAVSettingsTest extends TestCase { /** @var IURLGenerator|MockObject */ private $urlGenerator; - /** @var CalDAVSettings */ private CalDAVSettings $settings; protected function setUp(): void { |