Fixed invalid imports after class refactoring

This commit is contained in:
Alejandro Celaya
2020-05-08 10:29:24 +02:00
parent 9a78fd1a26
commit 06c59fe2dd
11 changed files with 20 additions and 17 deletions

View File

@@ -16,9 +16,9 @@ class DeleteTagsCommand extends Command
{
public const NAME = 'tag:delete';
private \Shlinkio\Shlink\Core\Tag\TagServiceInterface $tagService;
private TagServiceInterface $tagService;
public function __construct(\Shlinkio\Shlink\Core\Tag\TagServiceInterface $tagService)
public function __construct(TagServiceInterface $tagService)
{
parent::__construct();
$this->tagService = $tagService;

View File

@@ -20,7 +20,7 @@ class RenameTagCommand extends Command
private TagServiceInterface $tagService;
public function __construct(\Shlinkio\Shlink\Core\Tag\TagServiceInterface $tagService)
public function __construct(TagServiceInterface $tagService)
{
parent::__construct();
$this->tagService = $tagService;