| Total Complexity | 3 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 42.86% |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | class NumericRangeCount |
||
| 24 | { |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var float |
||
| 28 | */ |
||
| 29 | protected $rangeItem; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var int |
||
| 33 | */ |
||
| 34 | protected $documentCount = 0; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param float $rangeItem |
||
| 38 | * @param integer $documentCount |
||
| 39 | */ |
||
| 40 | 4 | public function __construct($rangeItem, $documentCount) |
|
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return float |
||
| 48 | */ |
||
| 49 | public function getRangeItem() |
||
| 52 | } |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return int |
||
| 56 | */ |
||
| 57 | public function getDocumentCount() |
||
| 62 |