Completed
Push — master ( 72c2fc...074e1b )
by Simonas
04:21
created

SamplerAggregation::setShardSize()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of the ONGR package.
5
 *
6
 * (c) NFQ Technologies UAB <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace ONGR\ElasticsearchDSL\Aggregation\Bucketing;
13
14
use ONGR\ElasticsearchDSL\Aggregation\AbstractAggregation;
15
use ONGR\ElasticsearchDSL\Aggregation\Type\BucketingTrait;
16
17
/**
18
 * Class representing geo bounds aggregation.
19
 *
20
 * @link https://www.elastic.co/guide/en/elasticsearch/reference/2.3/search-aggregations-bucket-sampler-aggregation.html
21
 */
22
class SamplerAggregation extends AbstractAggregation
23
{
24
    use BucketingTrait;
25
26
    /**
27
     * Defines how many results will be received from each shard
28
     * @param string $shardSize
29
     */
30
    private $shardSize;
31
32
    /**
33
     * Inner aggregations container init.
34
     *
35
     * @param string $name
36
     * @param string $field
37
     * @param int    $shardSize
38
     */
39
    public function __construct($name, $field = null, $shardSize = null)
40
    {
41
        parent::__construct($name);
42
43
        $this->setField($field);
44
        $this->setShardSize($shardSize);
45
    }
46
47
    /**
48
     * @return int
49
     */
50
    public function getShardSize()
51
    {
52
        return $this->shardSize;
53
    }
54
55
    /**
56
     * @param int $shardSize
57
     */
58
    public function setShardSize($shardSize)
59
    {
60
        $this->shardSize = $shardSize;
61
    }
62
63
    /**
64
     * {@inheritdoc}
65
     */
66
    public function getType()
67
    {
68
        return 'sampler';
69
    }
70
71
    /**
72
     * {@inheritdoc}
73
     */
74
    public function getArray()
75
    {
76
        $out = array_filter(
77
            [
78
                'field' => $this->getField(),
79
                'shard_size' => $this->getShardSize(),
80
            ]
81
        );
82
83
        return $out;
84
    }
85
}
86