Cache
9 months ago
Decorator
9 months ago
Event
9 months ago
Exception
9 months ago
Id
9 months ago
Internal
9 months ago
Mapping
9 months ago
Persisters
8 months ago
Proxy
9 months ago
Query
9 months ago
Repository
9 months ago
Tools
9 months ago
Utility
9 months ago
AbstractQuery.php
9 months ago
Cache.php
9 months ago
Configuration.php
9 months ago
EntityManager.php
9 months ago
EntityManagerInterface.php
9 months ago
EntityNotFoundException.php
9 months ago
EntityRepository.php
9 months ago
Events.php
9 months ago
LazyCriteriaCollection.php
9 months ago
NativeQuery.php
9 months ago
NoResultException.php
9 months ago
NonUniqueResultException.php
9 months ago
ORMException.php
9 months ago
ORMInvalidArgumentException.php
9 months ago
ORMSetup.php
9 months ago
OptimisticLockException.php
9 months ago
PersistentCollection.php
9 months ago
PessimisticLockException.php
9 months ago
Query.php
9 months ago
QueryBuilder.php
9 months ago
TransactionRequiredException.php
9 months ago
UnexpectedResultException.php
9 months ago
UnitOfWork.php
9 months ago
Version.php
9 months ago
index.php
9 months ago
Events.php
24 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\ORM; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | final class Events |
| 6 | { |
| 7 | private function __construct() |
| 8 | { |
| 9 | } |
| 10 | public const preRemove = 'preRemove'; |
| 11 | public const postRemove = 'postRemove'; |
| 12 | public const prePersist = 'prePersist'; |
| 13 | public const postPersist = 'postPersist'; |
| 14 | public const preUpdate = 'preUpdate'; |
| 15 | public const postUpdate = 'postUpdate'; |
| 16 | public const postLoad = 'postLoad'; |
| 17 | public const loadClassMetadata = 'loadClassMetadata'; |
| 18 | public const onClassMetadataNotFound = 'onClassMetadataNotFound'; |
| 19 | public const preFlush = 'preFlush'; |
| 20 | public const onFlush = 'onFlush'; |
| 21 | public const postFlush = 'postFlush'; |
| 22 | public const onClear = 'onClear'; |
| 23 | } |
| 24 |