mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-09 16:53:11 +08:00
Fixed invalid imports after class refactoring
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user