SamplerAggregation::getShardSize()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 4
Ratio 100 %

Importance

Changes 0
Metric Value
dl 4
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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 View Code Duplication
class SamplerAggregation extends AbstractAggregation
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
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
     * @return $this
59
     */
60
    public function setShardSize($shardSize)
61
    {
62
        $this->shardSize = $shardSize;
63
64
        return $this;
65
    }
66
67
    /**
68
     * {@inheritdoc}
69
     */
70
    public function getType()
71
    {
72
        return 'sampler';
73
    }
74
75
    /**
76
     * {@inheritdoc}
77
     */
78
    public function getArray()
79
    {
80
        $out = array_filter(
81
            [
82
                'field' => $this->getField(),
83
                'shard_size' => $this->getShardSize(),
84
            ]
85
        );
86
87
        return $out;
88
    }
89
}
90