FOSElasticaBundle/Transformer/HighlightableModelInterface.php
2012-07-16 11:49:28 -04:00

17 lines
328 B
PHP

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