File manager - Edit - /var/www/payraty/helpdesk/vendor/handcraftedinthealps/elasticsearch-dsl/src/Aggregation/Bucketing/AdjacencyMatrixAggregation.php
Back
<?php /* * This file is part of the ONGR package. * * (c) NFQ Technologies UAB <info@nfq.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace ONGR\ElasticsearchDSL\Aggregation\Bucketing; use ONGR\ElasticsearchDSL\Aggregation\AbstractAggregation; use ONGR\ElasticsearchDSL\Aggregation\Type\BucketingTrait; use ONGR\ElasticsearchDSL\BuilderInterface; /** * Class representing adjacency matrix aggregation. * * @link https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-adjacency-matrix-aggregation.html */ class AdjacencyMatrixAggregation extends AbstractAggregation { const FILTERS = 'filters'; use BucketingTrait; /** * @var BuilderInterface[] */ private $filters = [ self::FILTERS => [] ]; /** * Inner aggregations container init. * * @param string $name * @param BuilderInterface[] $filters */ public function __construct($name, $filters = []) { parent::__construct($name); foreach ($filters as $name => $filter) { $this->addFilter($name, $filter); } } /** * @param string $name * @param BuilderInterface $filter * * @throws \LogicException * * @return self */ public function addFilter($name, BuilderInterface $filter) { $this->filters[self::FILTERS][$name] = $filter->toArray(); return $this; } /** * {@inheritdoc} */ public function getArray() { return $this->filters; } /** * {@inheritdoc} */ public function getType() { return 'adjacency_matrix'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings