Skip to content
Snippets Groups Projects
GeoShapeFilter.php 628 B
Newer Older
Mantas Jonušas's avatar
Mantas Jonušas committed
<?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 GeoShapeFilter class is deprecated and will be removed in 2.0. Use GeoShapeQuery instead.',
    E_USER_DEPRECATED
);

use ONGR\ElasticsearchDSL\Query\GeoShapeQuery;
Mantas Jonušas's avatar
Mantas Jonušas committed

/**
 * Elasticsearch geo-shape filter.
Mantas Varatiejus's avatar
Mantas Varatiejus committed
 *
 * @deprecated Will be removed in 2.0. Use the GeoShapeQuery instead.
Mantas Jonušas's avatar
Mantas Jonušas committed
 */
Mantas Varatiejus's avatar
Mantas Varatiejus committed
class GeoShapeFilter extends GeoShapeQuery