Home
last modified time | relevance | path

Searched refs:toArray (Results 51 – 75 of 241) sorted by last modified time

12345678910

/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DIndex.php198 'query' => \is_array($q) ? $q : $q->toArray(),
199 'script' => $script->toArray()['script'],
361 $endpoint->setBody(['query' => \is_array($query) ? $query : $query->toArray()]);
H A DMapping.php152 public function toArray(): array function in Elastica\\Mapping
169 $endpoint->setBody($this->toArray());
H A DParam.php37 public function toArray() function in Elastica\\Param
160 $arr[$value instanceof NameableInterface ? $value->getName() : $key] = $value->toArray();
H A DPipeline.php72 $endpoint->setBody($this->toArray());
120 $this->_processors['processors'] = $processor->toArray();
123 $this->_processors['processors'] = \array_merge($this->_processors['processors'], $processor->toArray());
163 public function toArray(): array
160 public function toArray(): array global() function in Elastica\\Pipeline
H A DPointInTime.php15 public function toArray(): array function in Elastica\\PointInTime
H A DReindex.php217 $sourceBody[self::QUERY] = $sourceBody[self::QUERY]->toArray();
232 $body = \array_merge($body, $script->toArray());
H A DRequest.php53 return JSON::stringify($this->toArray());
182 // Refactor: Not full toArray needed in exec?
183 return $transport->exec($this, $this->getConnection()->toArray());
189 public function toArray() function in Elastica\\Request
H A DSearch.php349 $data = $query->toArray();
381 $query->toArray(),
H A DArrayableInterface.php17 public function toArray(); function
H A DQuery.php332 public function toArray(): array
330 public function toArray(): array global() function in Elastica\\Query
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DMoreLikeThis.php161 public function toArray(): array function in Elastica\\Query\\MoreLikeThis
163 $array = parent::toArray();
H A DQueryString.php229 public function toArray(): array function in Elastica\\Query\\QueryString
H A DScript.php44 public function toArray(): array function in Elastica\\Query\\Script
46 $array = parent::toArray();
H A DSimple.php42 public function toArray(): array function in Elastica\\Query\\Simple
/plugin/elasticsearch/vendor/ruflin/elastica/src/Multi/
H A DSearch.php165 $data .= JSON::stringify($query->toArray() + $queryOptions)."\n";
/plugin/elasticsearch/vendor/ruflin/elastica/src/Rescore/
H A DQuery.php34 public function toArray(): array function in Elastica\\Rescore\\Query
/plugin/elasticsearch/vendor/ruflin/elastica/src/Script/
H A DScriptFields.php59 public function toArray(): array function in Elastica\\Script\\ScriptFields
H A DAbstractScript.php55 * Factory to create a script object from data structure (reverse toArray).
97 public function toArray(): array function in Elastica\\Script\\AbstractScript
/plugin/elasticsearch/vendor/ruflin/elastica/src/Suggest/
H A DPhrase.php163 public function toArray(): array function in Elastica\\Suggest\\Phrase
165 $array = parent::toArray();
/plugin/elasticsearch/vendor/ruflin/elastica/src/Aggregation/
H A DReverseNested.php38 public function toArray(): array function in Elastica\\Aggregation\\ReverseNested
40 $array = parent::toArray();
H A DSerialDiff.php64 public function toArray(): array function in Elastica\\Aggregation\\SerialDiff
70 return parent::toArray();
H A DStatsBucket.php43 public function toArray(): array function in Elastica\\Aggregation\\StatsBucket
49 return parent::toArray();
H A DSumBucket.php43 public function toArray(): array function in Elastica\\Aggregation\\SumBucket
49 return parent::toArray();
H A DAbstractAggregation.php128 public function toArray(): array function in Elastica\\Aggregation\\AbstractAggregation
130 $array = parent::toArray();
/plugin/elasticsearch/vendor/ruflin/elastica/
H A DCHANGELOG.md850 - `Elastica\Query\MoreLikeThis->toArray()` now supports providing a non-indexed document as an input to perform the comparison.
991 - Introduction of Lazy toArray [#916](https://github.com/ruflin/Elastica/pull/916)
1781 - Added Elastica_Script::toArray
1802 - Fix Elasitca_Document->toArray()

12345678910