diff options
Diffstat (limited to 'vendor/doctrine/orm/src/Event/PostFlushEventArgs.php')
-rw-r--r-- | vendor/doctrine/orm/src/Event/PostFlushEventArgs.php | 19 |
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 | |||
3 | declare(strict_types=1); | ||
4 | |||
5 | namespace Doctrine\ORM\Event; | ||
6 | |||
7 | use Doctrine\ORM\EntityManagerInterface; | ||
8 | use 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 | */ | ||
17 | class PostFlushEventArgs extends ManagerEventArgs | ||
18 | { | ||
19 | } | ||