I'm working on migrating all of my sites from PHP74 to PHP82. At the moment, I've successfully migrated to PHP8.1 but found one remaining possible bug in PivotMatrix Sort.
When I add a rowSort to a PivotMatrix I get an error
"rowSort" => array(
'entryDate' => function($v1, $v2) {
return $v1 > $v2; // -1, 0, or 1
}
),
The Error
ErrorException
usort(): Returning bool from comparison function is deprecated, return an integer less than, equal to, or greater than zero
VENDORPATH/koolreport/pivot/PivotUtil.php at line 198
198 usort($index, $compareFunc);