Hello, is there a reason why reset() method is not cleaning errors from previous parse?
Fixed it by extending decoda and just adding php $this->_errors = array(); into reset() method. And I don't see a reason why it would be needed to check errors after all parses as there is no indication which parse contained the errors so reseting it and checking errors after each parse individually makes more sense imo.
Hello, is there a reason why reset() method is not cleaning errors from previous parse?
Fixed it by extending decoda and just adding
php $this->_errors = array();
into reset() method. And I don't see a reason why it would be needed to check errors after all parses as there is no indication which parse contained the errors so reseting it and checking errors after each parse individually makes more sense imo.