| 123456789101112131415161718192021 |
- <?php
- namespace Elastica\Query;
- /**
- * Match none query. Returns no results.
- *
- * @author David Causse
- *
- * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-all-query.html#query-dsl-match-none-query
- */
- class MatchNone extends AbstractQuery
- {
- /**
- * Creates match none query.
- */
- public function __construct()
- {
- $this->_params = new \stdClass();
- }
- }
|