for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Resova\Models;
use Resova\Model;
class TransactionUpdate extends Model
{
public function allowed(): array
return [
'customer_id' => 'int', // The primary customer for the transaction.
'status' => 'bool', // True if the transaction is active.
];
}