Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
24 | public function __construct($name, $field, array $ranges, $keyed) |
||
25 | { |
||
26 | parent::__construct($name, $field, $ranges, $keyed); |
||
27 | |||
28 | trigger_error( |
||
29 | 'This aggregation is moved to `Bucketing` namespace. Use the new namespace instead.' . |
||
30 | ' It will be removed in 3.0', |
||
31 | E_USER_DEPRECATED |
||
32 | ); |
||
33 | } |
||
34 | } |
||
35 |