FOSElasticaBundle/Transformer/HighlightableModelInterface.php
2015-03-12 21:20:00 +11:00

17 lines
331 B
PHP

<?php
namespace FOS\ElasticaBundle\Transformer;
/**
* Maps Elastica documents with model objects.
*/
interface HighlightableModelInterface
{
/**
* Set ElasticSearch highlight data.
*
* @param array $highlights array of highlight strings
*/
public function setElasticHighlights(array $highlights);
}