| Total Complexity | 6 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | final class AggregatorCollection implements AggregatorCollectionInterface |
||
| 8 | { |
||
| 9 | |||
| 10 | private const MIN = 'min'; |
||
| 11 | private const MAX = 'max'; |
||
| 12 | private const LENGTH = 'length'; |
||
| 13 | private const AVG = 'avg'; |
||
| 14 | private const STDDEV = 'stddev'; |
||
| 15 | |||
| 16 | 6 | public function byName(string $name): ValueAggregatorInterface |
|
| 38 |