In my Entity I have the following embeddable:
/**
* @var Money\Currency
*
* @ORM\Embedded(class="\Money\Currency")
*/
private $inboundCurrency;
$metaData->fieldNames contains "inboundCurrency.code" for this field. But if I provide an array with this key, I get "Property inboundCurrency.code does not exist (ReflectionException)" error. Other ways I've tried also do not work.
In my Entity I have the following embeddable:
$metaData->fieldNames contains "inboundCurrency.code" for this field. But if I provide an array with this key, I get "Property inboundCurrency.code does not exist (ReflectionException)" error. Other ways I've tried also do not work.