summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Event/PostUpdateEventArgs.php
blob: c9ff00477d439eb8ce0c52ca510461a1cfc5a02c (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 PostUpdateEventArgs extends LifecycleEventArgs
{
}