%PDF- %PDF-
Direktori : /home/graphicd/public_html/vebto/vendor/ongr/elasticsearch-dsl/src/Query/Joining/ |
Current File : /home/graphicd/public_html/vebto/vendor/ongr/elasticsearch-dsl/src/Query/Joining/ParentIdQuery.php |
<?php namespace ONGR\ElasticsearchDSL\Query\Joining; use ONGR\ElasticsearchDSL\BuilderInterface; use ONGR\ElasticsearchDSL\ParametersTrait; /** * @link https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-parent-id-query.html */ class ParentIdQuery implements BuilderInterface { use ParametersTrait; /** * @var string */ private $childType; /** * @var string */ private $parentId; /** * @param string $parentId * @param string $childType * @param array $parameters */ public function __construct($parentId, string $childType, array $parameters = []) { $this->childType = $childType; $this->parentId = $parentId; $this->setParameters($parameters); } /** * {@inheritdoc} */ public function getType() { return 'parent_id'; } /** * {@inheritdoc} */ public function toArray() { $query = [ 'id' => $this->parentId, 'type' => $this->childType, ]; $output = $this->processArray($query); return [$this->getType() => $output]; } }