aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/CalDAV/ICSExportPlugin
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-04-12 14:01:13 +0200
committerCarl Schwan <carl@carlschwan.eu>2022-05-05 22:03:59 +0200
commit829490ab7a02579c6b31573c3f53428e86cbf2e0 (patch)
tree1f644d168039ea1875398234419ace13f49dac5f /apps/dav/lib/CalDAV/ICSExportPlugin
parent0690646d09430ce363b07bc2cd59283e303314eb (diff)
downloadnextcloud-server-829490ab7a02579c6b31573c3f53428e86cbf2e0.tar.gz
nextcloud-server-829490ab7a02579c6b31573c3f53428e86cbf2e0.zip
Cleanup dav
- Remove unused class AppEnabledPlugin - Add more type hinting when possible Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/dav/lib/CalDAV/ICSExportPlugin')
-rw-r--r--apps/dav/lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/dav/lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php b/apps/dav/lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php
index 0c76e4f5e10..2a5a6f1bae3 100644
--- a/apps/dav/lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php
+++ b/apps/dav/lib/CalDAV/ICSExportPlugin/ICSExportPlugin.php
@@ -23,11 +23,11 @@
namespace OCA\DAV\CalDAV\ICSExportPlugin;
use OCP\IConfig;
-use Psr\Log\LoggerInterface;
use Sabre\HTTP\ResponseInterface;
use Sabre\VObject\DateTimeParser;
use Sabre\VObject\InvalidDataException;
use Sabre\VObject\Property\ICalendar\Duration;
+use Psr\Log\LoggerInterface;
/**
* Class ICSExportPlugin
@@ -35,10 +35,7 @@ use Sabre\VObject\Property\ICalendar\Duration;
* @package OCA\DAV\CalDAV\ICSExportPlugin
*/
class ICSExportPlugin extends \Sabre\CalDAV\ICSExportPlugin {
-
- /** @var IConfig */
- private $config;
-
+ private IConfig $config;
private LoggerInterface $logger;
/** @var string */