FOSElasticaBundle/Transformer/HighlightableModelInterface.php
2013-03-27 13:44:06 -04:00

17 lines
328 B
PHP

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