Skip to content

Commit 947d38a

Browse files
committed
psalm
1 parent 6e037bd commit 947d38a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit/Reader/Factory/ApiReaderFactoryTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
namespace Fastbolt\EntityImporter\Tests\Unit\Reader\Factory;
1010

11-
use Fastbolt\EntityImporter\EntityImporterDefinition;
1211
use Fastbolt\EntityImporter\Reader\Factory\ApiReaderFactory;
12+
use Fastbolt\EntityImporter\Types\ImportSourceDefinition\Api;
1313
use Fastbolt\TestHelpers\BaseTestCase;
1414
use Fastbolt\TestHelpers\Visibility;
1515
use GuzzleHttp\Client;
@@ -26,7 +26,7 @@ class ApiReaderFactoryTest extends BaseTestCase
2626
private $clientFactory;
2727

2828
/**
29-
* @var EntityImporterDefinition&MockObject
29+
* @var Api&MockObject
3030
*/
3131
private $importerDefinition;
3232

@@ -64,7 +64,7 @@ protected function setUp(): void
6464
parent::setUp();
6565

6666
$this->clientFactory = $this->getCallable();
67-
$this->importerDefinition = $this->getMock(EntityImporterDefinition::class);
67+
$this->importerDefinition = $this->getMock(Api::class);
6868
$this->client = $this->getMock(Client::class);
6969
}
7070
}

0 commit comments

Comments
 (0)