From 773a65319edd23c4feb22c74a78d67b31b1f9de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mantas=20Urnie=C5=BEa?= <mantas.urnieza@nfq.lt> Date: Wed, 10 Jun 2015 10:52:37 +0300 Subject: [PATCH] FLT query implementation --- Query/FuzzyLikeThisQuery.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Query/FuzzyLikeThisQuery.php diff --git a/Query/FuzzyLikeThisQuery.php b/Query/FuzzyLikeThisQuery.php new file mode 100644 index 0000000..85770ed --- /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'; + } +} -- GitLab