summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Event/PostLoadEventArgs.php
blob: 8344e6813378cd0b6a094828436aae2ec43083fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

namespace Doctrine\ORM\Event;

use Doctrine\ORM\EntityManagerInterface;
use Doctrine\Persistence\Event\LifecycleEventArgs;

/** @extends LifecycleEventArgs<EntityManagerInterface> */
final class PostLoadEventArgs extends LifecycleEventArgs
{
}