PercentilesAggregation   A
last analyzed

Complexity

Total Complexity 11

Size/Duplication

Total Lines 116
Duplicated Lines 23.28 %

Coupling/Cohesion

Components 1
Dependencies 3

Importance

Changes 0
Metric Value
wmc 11
lcom 1
cbo 3
dl 27
loc 116
rs 10
c 0
b 0
f 0

8 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 9 9 1
A getPercents() 0 4 1
A setPercents() 0 6 1
A getCompression() 0 4 1
A setCompression() 0 6 1
A getType() 0 4 1
A getArray() 18 18 2
A isRequiredParametersSet() 0 6 3

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

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
 * Class representing PercentilesAggregation.
20
 *
21
 * @link https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-metrics-percentile-aggregation.html
22
 */
23
class PercentilesAggregation extends AbstractAggregation
24
{
25
    use MetricTrait;
26
    use ScriptAwareTrait;
27
28
    /**
29
     * @var array
30
     */
31
    private $percents;
32
33
    /**
34
     * @var int
35
     */
36
    private $compression;
37
38
    /**
39
     * Inner aggregations container init.
40
     *
41
     * @param string $name
42
     * @param string $field
43
     * @param array  $percents
44
     * @param string $script
45
     * @param int    $compression
46
     */
47 View Code Duplication
    public function __construct($name, $field = null, $percents = null, $script = null, $compression = null)
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...
48
    {
49
        parent::__construct($name);
50
51
        $this->setField($field);
52
        $this->setPercents($percents);
0 ignored issues
show
Bug introduced by
It seems like $percents defined by parameter $percents on line 47 can also be of type null; however, ONGR\ElasticsearchDSL\Ag...regation::setPercents() does only seem to accept array, maybe add an additional type check?

This check looks at variables that have been passed in as parameters and are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
53
        $this->setScript($script);
54
        $this->setCompression($compression);
55
    }
56
57
    /**
58
     * @return array
59
     */
60
    public function getPercents()
61
    {
62
        return $this->percents;
63
    }
64
65
    /**
66
     * @param array $percents
67
     *
68
     * @return $this
69
     */
70
    public function setPercents($percents)
71
    {
72
        $this->percents = $percents;
73
74
        return $this;
75
    }
76
77
    /**
78
     * @return int
79
     */
80
    public function getCompression()
81
    {
82
        return $this->compression;
83
    }
84
85
    /**
86
     * @param int $compression
87
     *
88
     * @return $this
89
     */
90
    public function setCompression($compression)
91
    {
92
        $this->compression = $compression;
93
94
        return $this;
95
    }
96
97
    /**
98
     * {@inheritdoc}
99
     */
100
    public function getType()
101
    {
102
        return 'percentiles';
103
    }
104
105
    /**
106
     * {@inheritdoc}
107
     */
108 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...
109
    {
110
        $out = array_filter(
111
            [
112
                'compression' => $this->getCompression(),
113
                'percents' => $this->getPercents(),
114
                'field' => $this->getField(),
115
                'script' => $this->getScript(),
116
            ],
117
            function ($val) {
118
                return ($val || is_numeric($val));
119
            }
120
        );
121
122
        $this->isRequiredParametersSet($out);
123
124
        return $out;
125
    }
126
127
    /**
128
     * @param array $a
129
     *
130
     * @throws \LogicException
131
     */
132
    private function isRequiredParametersSet($a)
133
    {
134
        if (!array_key_exists('field', $a) && !array_key_exists('script', $a)) {
135
            throw new \LogicException('Percentiles aggregation must have field or script set.');
136
        }
137
    }
138
}
139