vendor/doctrine/orm/src/Mapping/Id.php line 14

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Doctrine\ORM\Mapping;
  4. use Attribute;
  5. /**
  6.  * @Annotation
  7.  * @Target("PROPERTY")
  8.  */
  9. #[Attribute(Attribute::TARGET_PROPERTY)]
  10. final class Id implements MappingAttribute
  11. {
  12. }