diff --git a/Query/FuzzyLikeThisQuery.php b/Query/FuzzyLikeThisQuery.php new file mode 100644 index 0000000000000000000000000000000000000000..85770ed2ed992d10665d846b34206047518083ff --- /dev/null +++ b/Query/FuzzyLikeThisQuery.php @@ -0,0 +1,26 @@ +<?php + +/* + * This file is part of the ONGR package. + * + * (c) NFQ Technologies UAB <info@nfq.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ONGR\ElasticsearchBundle\DSL\Query; + +/** + * Elasticsearch fuzzy_like_this query class. + */ +class FuzzyLikeThisQuery extends FuzzyLikeThisFieldQuery +{ + /** + * {@inheritdoc} + */ + public function getType() + { + return 'fuzzy_like_this'; + } +}