I would like my properties to be CamelCase rather than using an underscore stratergy. How can I set this?
i.e.
This is what is generated:
/**
* @ORM\Column(type="float", nullable=false)
*/
private $sender_payment;
This is what I want:
/**
* @ORM\Column(type="float", nullable=false)
*/
private $senderPayment; <--
Thanks!