Skip to content
Snippets Groups Projects
Commit 0cfa9a76 authored by Mantas Jonušas's avatar Mantas Jonušas
Browse files

Renamed FuzzyLikeThisFieldQuery

parent b920cb8f
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ use ONGR\ElasticsearchBundle\DSL\ParametersTrait;
/**
* Elasticsearch fuzzy_like_this_field query class.
*/
class FuzzyLikeThisField implements BuilderInterface
class FuzzyLikeThisFieldQuery implements BuilderInterface
{
use ParametersTrait;
......@@ -31,11 +31,6 @@ class FuzzyLikeThisField implements BuilderInterface
*/
private $likeText;
/**
* @var string
*/
private $analyzer;
/**
* @param string $field
* @param string $likeText
......@@ -63,7 +58,6 @@ class FuzzyLikeThisField implements BuilderInterface
{
$query = [
'like_text' => $this->likeText,
'analyzer' => $this->analyzer,
];
$output = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment