Results 2 issues of Tonny

Version: ^3.0 ### Bug Description Wrong SQL generation for joining tables with DELETE. ### Steps To Reproduce This code ```php $this->database->table('is_document_item') ->where('document.code', 202750006) ->where('amount', 0) ->fetchAll(); ``` generates this query:...

Return type of bcmod function needs to be string, because it can return number greater than PHP_INT_MAX, eg for numbers: bcmod(PHP_INT_MAX . '1', PHP_INT_MAX . '2'); So it should have...