mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 14:56:12 +01:00
TASK: Use imported interface
This commit is contained in:
parent
b2a63e9cb0
commit
4d2c8f79ca
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
) {
|
) {
|
||||||
|
|
Loading…
Reference in a new issue