v1.6.0
What's Changed
- Add Increase/Decrease for value metric #feature by @saleem-hadad in #26
Possible Breaking Change
If you have any custom value metric please make sure to return its value in a new form
<?php
...
class TotalIncome extends ValueMetric
{
public function __invoke($_, array $args)
{
return [
'value' => ...
];
}
}
Full Changelog: v1.5.1...v1.6.0