for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jeancsil\FlightSpy\Service\ElasticSearch;
/**
* @author Jean Silva <[email protected]>
* @license MIT
*/
trait ConfiguratorTrait
{
* @var string
protected $indexName;
protected $typeName;
* @param $indexName
public function configureIndex($indexName)
$this->indexName = $indexName;
}
* @param string $typeName
public function configureType($typeName)
$this->typeName = $typeName;