Skip to content

Commit

Permalink
Remove unused dynamic property (fix #173)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey18106 committed Jun 25, 2023
1 parent 48fd22d commit 6140003
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/Command/CollectorTaskNotificationCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 6140003

Please # to comment.