. */ 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("ANNOTATION") */ final class AttributeOverride implements Annotation { /** * The name of the property whose mapping is being overridden. * * @var string */ public $name; /** * The column definition. * * @var \Doctrine\ORM\Mapping\Column */ public $column; }