Skip to content
This repository was archived by the owner on Oct 13, 2025. It is now read-only.

Commit 6140003

Browse files
committed
Remove unused dynamic property (fix #173)
1 parent 48fd22d commit 6140003

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/Command/CollectorTaskNotificationCommand.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828

2929
namespace OCA\MediaDC\Command;
3030

31-
use OCP\IURLGenerator;
3231
use OCP\Notification\IManager;
3332
use Symfony\Component\Console\Command\Command;
3433
use Symfony\Component\Console\Input\InputArgument;
@@ -56,15 +55,13 @@ class CollectorTaskNotificationCommand extends Command {
5655
public function __construct(
5756
CollectorTaskMapper $tasksMapper,
5857
CollectorTaskDetailMapper $tasksDetailsMapper,
59-
IManager $notificationManager,
60-
IURLGenerator $urlGenerator
58+
IManager $notificationManager
6159
) {
6260
parent::__construct();
6361

6462
$this->tasksMapper = $tasksMapper;
6563
$this->tasksDetailsMapper = $tasksDetailsMapper;
6664
$this->notificationManager = $notificationManager;
67-
$this->url = $urlGenerator;
6865
}
6966

7067
protected function configure(): void {

0 commit comments

Comments
 (0)