WitER

Results 9 comments of WitER

> Could you clarify when this scenario might actually occur? Switching everything to use fromValue() introduces a slight overhead due to the ctype_print() check on each call. Is that trade-off...

>You need to rebase your PR. It currently includes commits that have already been merged. Please refer to the workflow guidelines here: https://github.com/codeigniter4/CodeIgniter4/blob/develop/contributing/workflow.md#pushing-your-branch Sorry, this is my second attempt to...

> Sorry, I forgot about this. > > Can you debug your data with `dd($approvedDebitOperation)` before you call `$model->save()` method? From the error message, this seems like the primary key...

And logically, we either have to ensure that all fields containing the UUID must be in string format before saving the entity, or we can safely convert the data to...

> This doesn’t seem correct - these values should be strings. How are you retrieving the entry from `FinancialOperationsModel`? Are you using a `find*` method? No, i used `->get` method...

> This doesn’t seem correct - these values should be strings. How are you retrieving the entry from `FinancialOperationsModel`? Are you using a `find*` method? All retrive rows method: ```php...

> Okay, so you're using the Query Builder. However, this implementation is designed to work with model methods. Yes, I understand that, but as we can see, a non-standard case...