Skip to content
Snippets Groups Projects
GeoBoundingBoxFilter.php 684 B
Newer Older
<?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\ElasticsearchDSL\Filter;
Mantas Varatiejus's avatar
Mantas Varatiejus committed
@trigger_error(
    'The GeoBoundingBoxFilter class is deprecated and will be removed in 2.0. Use GeoBoundingBoxQuery instead.',
    E_USER_DEPRECATED
);

use ONGR\ElasticsearchDSL\Query\GeoBoundingBoxQuery;

/**
 * Represents Elasticsearch "Geo Bounding Box" filter.
Mantas Varatiejus's avatar
Mantas Varatiejus committed
 *
 * @deprecated Will be removed in 2.0. Use the GeoBoundingBoxQuery instead.
Mantas Varatiejus's avatar
Mantas Varatiejus committed
class GeoBoundingBoxFilter extends GeoBoundingBoxQuery