diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2023-01-20 09:19:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 09:19:35 +0100 |
commit | fce87f8ddb2d523a503051362a66b7453bc2329b (patch) | |
tree | 923d0484d90673885ad478f7efa59ca0570f24bb /apps | |
parent | 5e3a3c0c8faa45489aa6ac610728b4177501c198 (diff) | |
parent | 3c9ceffa7ca466a2d2a2d221b3400c56012f3aae (diff) | |
download | nextcloud-server-fce87f8ddb2d523a503051362a66b7453bc2329b.tar.gz nextcloud-server-fce87f8ddb2d523a503051362a66b7453bc2329b.zip |
Merge pull request #36253 from nextcloud/chore/dav/remove-useless-var-tag
chore(dav): Remove useless var tag
Diffstat (limited to 'apps')
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 { |