FOSElasticaBundle/Transformer/HighlightableModelInterface.php

17 lines
331 B
PHP
Raw Normal View History

2015-03-12 11:20:00 +01:00
<?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);
}