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

TopHitsAggregation::getArray()   B

Complexity

Conditions 6
Paths 2

Size

Total Lines 17
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 17
rs 8.8571
cc 6
eloc 9
nc 2
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;
13
14
use ONGR\ElasticsearchDSL\Aggregation\Type\MetricTrait;
15
use ONGR\ElasticsearchDSL\BuilderInterface;
16
use ONGR\ElasticsearchDSL\Aggregation\Metric\TopHitsAggregation as Base;
17
18
/**
19
 * Top hits aggregation.
20
 *
21
 * @deprecated Aggregations was moved to it's type namespace. Add `Metric` or `Bucketing` after `Aggregation`.
22
 *     This class will be removed in 3.0.
23
 */
24
class TopHitsAggregation extends Base
25
{
26
    public function __construct($name, $size, $from, $sort)
27
    {
28
        parent::__construct($name, $size, $from, $sort);
29
30
        trigger_error(
31
            'This aggregation is moved to `Metric` namespace. Use the new namespace instead.' .
32
            ' It will be removed in 3.0',
33
            E_USER_DEPRECATED
34
        );
35
    }
36
}
37