I\'m trying to serialize a entity relation with JMS Serializer.
Here is the Entity:
class Ad { /** * @Type(\"string\") * @Groups({\"manag
You can use @Type and @Accessor annotations:
@Type
@Accessor
/** * @Type("string") * @Accessor(getter="serializeType",setter="setType") */ protected $type; public function serializeType() { return $this->type->getId(); }