Skip to content
Snippets Groups Projects
IdsFilter.php 605 B
Newer Older
ONGR Team's avatar
ONGR Team 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;
ONGR Team's avatar
ONGR Team committed

Mantas Varatiejus's avatar
Mantas Varatiejus committed
@trigger_error(
    'The IdsFilter class is deprecated and will be removed in 2.0. Use IdsQuery instead.',
    E_USER_DEPRECATED
);

use ONGR\ElasticsearchDSL\Query\IdsQuery;
ONGR Team's avatar
ONGR Team committed

/**
 * Represents Elasticsearch "ids" filter.
Mantas Varatiejus's avatar
Mantas Varatiejus committed
 *
 * @deprecated Will be removed in 2.0. Use the IdsQuery instead.
ONGR Team's avatar
ONGR Team committed
 */
Mantas Varatiejus's avatar
Mantas Varatiejus committed
class IdsFilter extends IdsQuery
ONGR Team's avatar
ONGR Team committed
{
}