Completed
Pull Request — master (#148)
by Simonas
02:51
created

CardinalityAggregation::getPrecisionThreshold()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
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\Metric;
13
14
use ONGR\ElasticsearchDSL\Aggregation\AbstractAggregation;
15
use ONGR\ElasticsearchDSL\Aggregation\Type\MetricTrait;
16
use ONGR\ElasticsearchDSL\ScriptAwareTrait;
17
18
/**
19
 * Difference values counter.
20
 *
21
 * @link http://goo.gl/tG7ciG
22
 */
23
class CardinalityAggregation extends AbstractAggregation
24
{
25
    use MetricTrait;
26
    use ScriptAwareTrait;
27
28
    /**
29
     * @var int
30
     */
31
    private $precisionThreshold;
32
33
    /**
34
     * @var bool
35
     */
36
    private $rehash;
37
38
    /**
39
     * {@inheritdoc}
40
     */
41 View Code Duplication
    public function getArray()
0 ignored issues
show
Duplication introduced by
This method 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...
42
    {
43
        $out = array_filter(
44
            [
45
                'field' => $this->getField(),
46
                'script' => $this->getScript(),
47
                'precision_threshold' => $this->getPrecisionThreshold(),
48
                'rehash' => $this->isRehash(),
49
            ],
50
            function ($val) {
51
                return ($val || is_bool($val));
52
            }
53
        );
54
55
        $this->checkRequiredFields($out);
56
57
        return $out;
58
    }
59
60
    /**
61
     * Precision threshold.
62
     *
63
     * @param int $precision Precision Threshold.
64
     */
65
    public function setPrecisionThreshold($precision)
66
    {
67
        $this->precisionThreshold = $precision;
68
    }
69
70
    /**
71
     * @return int
72
     */
73
    public function getPrecisionThreshold()
74
    {
75
        return $this->precisionThreshold;
76
    }
77
78
    /**
79
     * @return bool
80
     */
81
    public function isRehash()
82
    {
83
        return $this->rehash;
84
    }
85
86
    /**
87
     * @param bool $rehash
88
     */
89
    public function setRehash($rehash)
90
    {
91
        $this->rehash = $rehash;
92
    }
93
94
    /**
95
     * {@inheritdoc}
96
     */
97
    public function getType()
98
    {
99
        return 'cardinality';
100
    }
101
102
    /**
103
     * Checks if required fields are set.
104
     *
105
     * @param array $fields
106
     *
107
     * @throws \LogicException
108
     */
109
    private function checkRequiredFields($fields)
110
    {
111
        if (!array_key_exists('field', $fields) && !array_key_exists('script', $fields)) {
112
            throw new \LogicException('Cardinality aggregation must have field or script set.');
113
        }
114
    }
115
}
116