Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
1 | <?php |
||
47 | public function getArray() |
||
48 | { |
||
49 | $data = []; |
||
50 | if ($this->getField()) { |
||
51 | $data['field'] = $this->getField(); |
||
52 | } else { |
||
53 | throw new \LogicException('Geo bounds aggregation must have a field set.'); |
||
54 | } |
||
55 | |||
56 | $data['wrap_longitude'] = $this->isWrapLongitude(); |
||
57 | |||
58 | return $data; |
||
59 | } |
||
60 | |||
69 |