Files
LaLiga-BackEnd/vendor/doctrine/orm/src/Mapping/Id.php
T
2024-05-18 02:28:01 +02:00

17 lines
216 B
PHP

<?php
declare(strict_types=1);
namespace Doctrine\ORM\Mapping;
use Attribute;
/**
* @Annotation
* @Target("PROPERTY")
*/
#[Attribute(Attribute::TARGET_PROPERTY)]
final class Id implements MappingAttribute
{
}