Pix Lib and Validations #2

Merged
bacarin merged 32 commits from bacarin/phpkore:master into master 2025-07-11 18:33:17 +00:00
Showing only changes of commit a91b6e8650 - Show all commits

9
src/rules.php Normal file
View file

@ -0,0 +1,9 @@
<?php
function pixCobrancaImediataRules(array $data){
$rules = [
'valor' => 'required|integer',
'expiracao' => 'integer',
'devedor' => 'sometimes|string'
];
}