diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Mapping/AttributeOverride.php')
| -rw-r--r-- | vendor/doctrine/orm/src/Mapping/AttributeOverride.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Mapping/AttributeOverride.php b/vendor/doctrine/orm/src/Mapping/AttributeOverride.php new file mode 100644 index 0000000..8f0e70c --- /dev/null +++ b/vendor/doctrine/orm/src/Mapping/AttributeOverride.php | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | declare(strict_types=1); | ||
| 4 | |||
| 5 | namespace Doctrine\ORM\Mapping; | ||
| 6 | |||
| 7 | /** This attribute is used to override the mapping of a entity property. */ | ||
| 8 | final class AttributeOverride implements MappingAttribute | ||
| 9 | { | ||
| 10 | public function __construct( | ||
| 11 | public string $name, | ||
| 12 | public Column $column, | ||
| 13 | ) { | ||
| 14 | } | ||
| 15 | } | ||
