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

DateRangeAggregation::__construct()   A

Complexity

Conditions 4
Paths 5

Size

Total Lines 12
Code Lines 8

Duplication

Lines 12
Ratio 100 %

Importance

Changes 0
Metric Value
dl 12
loc 12
rs 9.2
c 0
b 0
f 0
nc 5
cc 4
eloc 8
nop 4
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\Bucketing\DateRangeAggregation as Base;
15
16
/**
17
 * Class representing date range aggregation.
18
 *
19
 * @deprecated Aggregations was moved to it's type namespace. Add `Metric` or `Bucketing` after `Aggregation`.
20
 *     This class will be removed in 3.0.
21
 */
22
class DateRangeAggregation extends Base
23
{
24
}
25