blob: 2448ca797371319f14bd947fab5056555ec14efe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php
namespace Elastica\Query;
/**
* Simple query
* Pure php array query. Can be used to create any not existing type of query.
*
* @category Xodoa
* @package Elastica
* @author Nicolas Ruflin <spam@ruflin.com>
*/
class Simple extends AbstractQuery
{
/**
* Query
*
* @var array Query
*/
protected $_query = array();
/**
* Constructs a query based on an array
*
* @param array $query Query array
*/
public function __construct(array $query)
{
$this->setQuery($query);
}
/**
* Sets new query array
*
* @param array $query Query array
* @return \Elastica\Query\Simple Current object
*/
public function setQuery(array $query)
{
$this->_query = $query;
return $this;
}
/**
* Converts query to array
*
* @return array Query array
* @see \Elastica\Query\AbstractQuery::toArray()
*/
public function toArray()
{
return $this->_query;
}
}
|