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

17 lines
218 B
PHP

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