17 lines
218 B
PHP
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
|
|
{
|
|
}
|