blob: 6ba9310d6d3ec77bb0ebe8e200fd32e7f939e014 (
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
|
<?php
namespace Elastica\Query;
/**
* Simple query
* Pure php array query. Can be used to create any not existing type of query.
*
* @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 $this
*/
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;
}
}
|