123456789101112131415161718192021222324 |
- <?php
- namespace WorkflowBundle\Utils;
- class DoctrineEvents
- {
- use ChoiceTrait;
- const PRE_PERSIST = 'prePersist';
- const POST_PERSIST = 'postPersist';
- const PRE_UPDATE = 'preUpdate';
- const POST_UPDATE = 'postUpdate';
- const PRE_REMOVE = 'preRemove';
- const POST_REMOVE = 'postRemove';
-
- const POST_LOAD = 'postLoad';
-
- }
|