TASK: Use imported interface

This commit is contained in:
Daniel Siepmann 2018-03-14 20:08:53 +01:00
parent b2a63e9cb0
commit 4d2c8f79ca
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -30,17 +30,17 @@ use Codappix\SearchCore\Domain\Index\TcaIndexer\TcaTableServiceInterface;
class TcaIndexer extends AbstractIndexer
{
/**
* @var TcaIndexer\TcaTableServiceInterface
* @var TcaTableServiceInterface
*/
protected $tcaTableService;
/**
* @param TcaIndexer\TcaTableServiceInterface $tcaTableService
* @param TcaTableServiceInterface $tcaTableService
* @param ConnectionInterface $connection
* @param ConfigurationContainerInterface $configuration
*/
public function __construct(
TcaIndexer\TcaTableServiceInterface $tcaTableService,
TcaTableServiceInterface $tcaTableService,
ConnectionInterface $connection,
ConfigurationContainerInterface $configuration
) {