Completed
Push — master ( 39ecb4...66dc2f )
by Nicolas
03:00
created

Match::setFieldQuery()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace Elastica\Query;
4
5
\trigger_error('Elastica\Query\Match is deprecated. Use Elastica\Query\MatchQuery instead. From PHP 8 match is reserved word and this class will be removed in further Elastica releases', \E_USER_DEPRECATED);
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 <[email protected]>
13
 *
14
 * @deprecated Use MatchQuery instead. From PHP 8 match is reserved word and this class will be removed in further Elastica releases
15
 */
16
class Match extends MatchQuery
17
{
18
}
19