You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the flag allProperties, the properties which supersede other properties are also generated, resulting in the following class with errors regarding duplicate properties:
/**
* @var string|null an award won by or for this item
*
* @ORM\Column(type="text", nullable=true)
* @ApiProperty(iri="http://schema.org/award")
*/
private $award;
/**
* @var string|null awards won by or for this item
*
* @ORM\Column(type="text", nullable=true)
*/
protected $award;