From 6140003b38c417aabc50173307537968fe8a2ed7 Mon Sep 17 00:00:00 2001 From: Andrey Borysenko Date: Sun, 25 Jun 2023 14:14:40 +0300 Subject: [PATCH] Remove unused dynamic property (fix #173) --- lib/Command/CollectorTaskNotificationCommand.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/Command/CollectorTaskNotificationCommand.php b/lib/Command/CollectorTaskNotificationCommand.php index 04907867..5204d5d9 100755 --- a/lib/Command/CollectorTaskNotificationCommand.php +++ b/lib/Command/CollectorTaskNotificationCommand.php @@ -28,7 +28,6 @@ namespace OCA\MediaDC\Command; -use OCP\IURLGenerator; use OCP\Notification\IManager; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputArgument; @@ -56,15 +55,13 @@ class CollectorTaskNotificationCommand extends Command { public function __construct( CollectorTaskMapper $tasksMapper, CollectorTaskDetailMapper $tasksDetailsMapper, - IManager $notificationManager, - IURLGenerator $urlGenerator + IManager $notificationManager ) { parent::__construct(); $this->tasksMapper = $tasksMapper; $this->tasksDetailsMapper = $tasksDetailsMapper; $this->notificationManager = $notificationManager; - $this->url = $urlGenerator; } protected function configure(): void {