php - Format returning date format on Symfony2 FOSRestBundle -
is there way change returning date format on webservice built fosrestbundle in symfony2?
for example, actual return:
{"id":9,"nome":"guilherme","rg":"0000000000","cpf":"000.000.000-00","nascimento":"1989-06-24t00:00:00+0200","genero":"m"}
i want change this:
{"id":9,"nome":"guilherme","rg":"0000000000","cpf":"000.000.000-00","nascimento":"1989-06-24","genero":"m"}
thanks.
it's add annotation property:
@type("datetime<'y-m-d'>")
see more: http://jmsyst.com/libs/serializer/master/reference/annotations#type