1<?php
2
3namespace Elastica\Query;
4
5\trigger_deprecation('ruflin/elastica', '7.1.0', 'The "%s" class is deprecated, use "%s" instead. "match" is a reserved keyword starting from PHP 8.0. It will be removed in 8.0.', Match::class, MatchQuery::class);
6
7/**
8 * Match query.
9 *
10 * This class is for backward compatibility reason. For PHP 8 and above use MatchQuery as Match is reserved.
11 *
12 * @author Nicolas Ruflin <spam@ruflin.com>
13 *
14 * @deprecated since version 7.1.0, use the MatchQuery class instead.
15 */
16class Match extends MatchQuery
17{
18}
19