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

@@ -17,7 +17,7 @@ class DeleteTagsAction extends AbstractRestAction
private TagServiceInterface $tagService;
public function __construct(\Shlinkio\Shlink\Core\Tag\TagServiceInterface $tagService)
public function __construct(TagServiceInterface $tagService)
{
$this->tagService = $tagService;
}

View File

@@ -16,7 +16,7 @@ class UpdateTagAction extends AbstractRestAction
protected const ROUTE_PATH = '/tags';
protected const ROUTE_ALLOWED_METHODS = [self::METHOD_PUT];
private \Shlinkio\Shlink\Core\Tag\TagServiceInterface $tagService;
private TagServiceInterface $tagService;
public function __construct(TagServiceInterface $tagService)
{