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

@@ -18,7 +18,7 @@ class DeleteTagsCommandTest extends TestCase
public function setUp(): void
{
$this->tagService = $this->prophesize(\Shlinkio\Shlink\Core\Tag\TagServiceInterface::class);
$this->tagService = $this->prophesize(TagServiceInterface::class);
$command = new DeleteTagsCommand($this->tagService->reveal());
$app = new Application();

View File

@@ -19,7 +19,7 @@ class ListTagsCommandTest extends TestCase
public function setUp(): void
{
$this->tagService = $this->prophesize(\Shlinkio\Shlink\Core\Tag\TagServiceInterface::class);
$this->tagService = $this->prophesize(TagServiceInterface::class);
$command = new ListTagsCommand($this->tagService->reveal());
$app = new Application();