| 12345678910111213141516171819202122 |
- <?php
- namespace Elastica\QueryBuilder;
- /**
- * DSL Interface.
- *
- * @author Manuel Andreo Garcia <andreo.garcia@googlemail.com>
- */
- interface DSL
- {
- const TYPE_QUERY = 'query';
- const TYPE_AGGREGATION = 'aggregation';
- const TYPE_SUGGEST = 'suggest';
- /**
- * must return type for QueryBuilder usage.
- *
- * @return string
- */
- public function getType();
- }
|