Skip to content
Snippets Groups Projects
MatchAllFilter.php 682 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 MatchAllFilter class is deprecated and will be removed in 2.0. Use MatchAllQuery instead.',
    E_USER_DEPRECATED
);

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

/**
 * Represents Elasticsearch "match_all" filter.
 *
 * A filter matches on all documents.
Mantas Varatiejus's avatar
Mantas Varatiejus committed
 *
 * @deprecated Will be removed in 2.0. Use the MatchAllQuery instead.
ONGR Team's avatar
ONGR Team committed
 */
Mantas Varatiejus's avatar
Mantas Varatiejus committed
class MatchAllFilter extends MatchAllQuery
ONGR Team's avatar
ONGR Team committed
{
}