Hi,
We're seeing a compile error when trying to use the Statistics class -
Cannot make static method koolreport\core\Process::process() non static in class koolreport\statistics\Statistics
It appears that the base Process::process() method is static, whereas the Statistics method is protected: Statistics: protected function process() { }
Process: static function process($params) { }
Looks like there's a mismatch here. How do we fix this easily?
Thanks!