blob: 8f0e70c7295a33d2f048a0c70b4497b6b29f912c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping;
/** This attribute is used to override the mapping of a entity property. */
final class AttributeOverride implements MappingAttribute
{
public function __construct(
public string $name,
public Column $column,
) {
}
}
|