for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\ElasticaBundle\Command;
use Symfony\Component\Console\Command\Command;
use Zenstruck\ElasticaBundle\Elastica\IndexManager;
/**
* @author Kevin Bond <[email protected]>
*/
abstract class IndexCommand extends Command
{
protected $indexManager;
public function __construct(IndexManager $indexManager)
parent::__construct();
$this->indexManager = $indexManager;
}