summaryrefslogtreecommitdiff
path: root/vendor/doctrine/orm/src/Event/PostFlushEventArgs.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/doctrine/orm/src/Event/PostFlushEventArgs.php')
-rw-r--r--vendor/doctrine/orm/src/Event/PostFlushEventArgs.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/doctrine/orm/src/Event/PostFlushEventArgs.php b/vendor/doctrine/orm/src/Event/PostFlushEventArgs.php
new file mode 100644
index 0000000..ca41ba8
--- /dev/null
+++ b/vendor/doctrine/orm/src/Event/PostFlushEventArgs.php
@@ -0,0 +1,19 @@
1<?php
2
3declare(strict_types=1);
4
5namespace Doctrine\ORM\Event;
6
7use Doctrine\ORM\EntityManagerInterface;
8use Doctrine\Persistence\Event\ManagerEventArgs;
9
10/**
11 * Provides event arguments for the postFlush event.
12 *
13 * @link www.doctrine-project.org
14 *
15 * @extends ManagerEventArgs<EntityManagerInterface>
16 */
17class PostFlushEventArgs extends ManagerEventArgs
18{
19}