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 class TcaIndexer extends AbstractIndexer
{ {
/** /**
* @var TcaIndexer\TcaTableServiceInterface * @var TcaTableServiceInterface
*/ */
protected $tcaTableService; protected $tcaTableService;
/** /**
* @param TcaIndexer\TcaTableServiceInterface $tcaTableService * @param TcaTableServiceInterface $tcaTableService
* @param ConnectionInterface $connection * @param ConnectionInterface $connection
* @param ConfigurationContainerInterface $configuration * @param ConfigurationContainerInterface $configuration
*/ */
public function __construct( public function __construct(
TcaIndexer\TcaTableServiceInterface $tcaTableService, TcaTableServiceInterface $tcaTableService,
ConnectionInterface $connection, ConnectionInterface $connection,
ConfigurationContainerInterface $configuration ConfigurationContainerInterface $configuration
) { ) {