nilportugues/php-hal

Is there a way to filter data?

Closed this issue · 1 comments

DateTime objects are returned in the api with it internal representation:

{
    "date": "2012-12-31 23:00:00.000000",
    "timezone_type": 3,
    "timezone": "UTC"
}

I would like to output date as a single ISO-8601 value (DateTime::ATOM). How would you recommend doing it using this library?

You should be converting data in the DTO before serializing it.

Separation of the internal and external representation is not meant to be solved by this library. It only saves you time writing transformer objects and serializing them to the standard.