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
EntityManagerInterface.php
50 lines
| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\ORM; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | use BadMethodCallException; |
| 6 | use DateTimeInterface; |
| 7 | use MailPoetVendor\Doctrine\Common\EventManager; |
| 8 | use MailPoetVendor\Doctrine\DBAL\Connection; |
| 9 | use MailPoetVendor\Doctrine\DBAL\LockMode; |
| 10 | use MailPoetVendor\Doctrine\ORM\Exception\ORMException; |
| 11 | use MailPoetVendor\Doctrine\ORM\Internal\Hydration\AbstractHydrator; |
| 12 | use MailPoetVendor\Doctrine\ORM\Proxy\ProxyFactory; |
| 13 | use MailPoetVendor\Doctrine\ORM\Query\Expr; |
| 14 | use MailPoetVendor\Doctrine\ORM\Query\FilterCollection; |
| 15 | use MailPoetVendor\Doctrine\ORM\Query\ResultSetMapping; |
| 16 | use MailPoetVendor\Doctrine\Persistence\ObjectManager; |
| 17 | interface EntityManagerInterface extends ObjectManager |
| 18 | { |
| 19 | public function getRepository($className); |
| 20 | public function getCache(); |
| 21 | public function getConnection(); |
| 22 | public function getExpressionBuilder(); |
| 23 | public function beginTransaction(); |
| 24 | public function transactional($func); |
| 25 | // public function wrapInTransaction(callable $func); |
| 26 | public function commit(); |
| 27 | public function rollback(); |
| 28 | public function createQuery($dql = ''); |
| 29 | public function createNamedQuery($name); |
| 30 | public function createNativeQuery($sql, ResultSetMapping $rsm); |
| 31 | public function createNamedNativeQuery($name); |
| 32 | public function createQueryBuilder(); |
| 33 | public function getReference($entityName, $id); |
| 34 | public function getPartialReference($entityName, $identifier); |
| 35 | public function close(); |
| 36 | public function copy($entity, $deep = \false); |
| 37 | public function lock($entity, $lockMode, $lockVersion = null); |
| 38 | public function getEventManager(); |
| 39 | public function getConfiguration(); |
| 40 | public function isOpen(); |
| 41 | public function getUnitOfWork(); |
| 42 | public function getHydrator($hydrationMode); |
| 43 | public function newHydrator($hydrationMode); |
| 44 | public function getProxyFactory(); |
| 45 | public function getFilters(); |
| 46 | public function isFiltersStateClean(); |
| 47 | public function hasFilters(); |
| 48 | public function getClassMetadata($className); |
| 49 | } |
| 50 |