diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Mapping/Id.php')
-rw-r--r-- | vendor/doctrine/orm/src/Mapping/Id.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Mapping/Id.php b/vendor/doctrine/orm/src/Mapping/Id.php new file mode 100644 index 0000000..e85dd2f --- /dev/null +++ b/vendor/doctrine/orm/src/Mapping/Id.php | |||
@@ -0,0 +1,12 @@ | |||
1 | <?php | ||
2 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\ORM\Mapping; | ||
6 | |||
7 | use Attribute; | ||
8 | |||
9 | #[Attribute(Attribute::TARGET_PROPERTY)] | ||
10 | final class Id implements MappingAttribute | ||
11 | { | ||
12 | } | ||