for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Elastica\Processor;
/**
* Elastica DotExpander Processor.
*
* @author Federico Panini <[email protected]>
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/dot-expand-processor.html
*/
class DotExpanderProcessor extends AbstractProcessor
{
public function __construct(string $field)
$this->setField($field);
}
* Set the field.
* @return $this
public function setField(string $field): self
return $this->setParam('field', $field);