| Conditions | 2 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 2 | protected function aggregateNumericData(array $dataList, ScalarValueInterface ...$elements): ?ValueInterface |
|
| 16 | { |
||
| 17 | 2 | return empty($dataList) |
|
| 18 | // @codeCoverageIgnoreStart |
||
| 19 | ? null |
||
| 20 | // @codeCoverageIgnoreEnd |
||
| 21 | 2 | : new LiteralScalarValue(array_sum($dataList) / count($dataList)); |
|
| 22 | } |
||
| 24 |