. */ namespace Doctrine\ORM\Mapping; /** * This annotation is used to override the mapping of a entity property. * * @author Fabio B. Silva * @since 2.3 * * @Annotation * @Target("CLASS") */ final class AttributeOverrides implements Annotation { /** * One or more field or property mapping overrides. * * @var array<\Doctrine\ORM\Mapping\AttributeOverride> */ public $value; }