i am building project restful api with phalcon micro! So any way format result before send to client ?
Example My category table with column
id => int (auto increment)
name => varchar 256
status => int 11
sort_order => int 11
in my code
$result = Model:findFirst(1);
$response->json($result->toArray());
but in client id , status and sort_order is string type
i am ask for best way format in model after query .