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 /
dbal /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
ArrayParameters
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Cache
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Connections
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Driver
[ 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
Logging
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Platforms
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Portability
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Query
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
SQL
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Schema
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Tools
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Types
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
ArrayParameterType.php
1.13
KB
-rwxrwxr-x
2026-02-24 08:03
ColumnCase.php
429
B
-rwxrwxr-x
2026-02-24 08:03
Configuration.php
7.7
KB
-rwxrwxr-x
2026-02-24 08:03
Connection.php
64.82
KB
-rwxrwxr-x
2026-02-24 08:03
ConnectionException.php
893
B
-rwxrwxr-x
2026-02-24 08:03
Driver.php
1.63
KB
-rwxrwxr-x
2026-02-24 08:03
DriverManager.php
9.16
KB
-rwxrwxr-x
2026-02-24 08:03
Events.php
1.58
KB
-rwxrwxr-x
2026-02-24 08:03
Exception.php
4.92
KB
-rwxrwxr-x
2026-02-24 08:03
ExpandArrayParameters.php
3.75
KB
-rwxrwxr-x
2026-02-24 08:03
FetchMode.php
422
B
-rwxrwxr-x
2026-02-24 08:03
LockMode.php
419
B
-rwxrwxr-x
2026-02-24 08:03
ParameterType.php
982
B
-rwxrwxr-x
2026-02-24 08:03
Query.php
1.09
KB
-rwxrwxr-x
2026-02-24 08:03
Result.php
8.58
KB
-rwxrwxr-x
2026-02-24 08:03
Statement.php
7.46
KB
-rwxrwxr-x
2026-02-24 08:03
TransactionIsolationLevel.php
601
B
-rwxrwxr-x
2026-02-24 08:03
VersionAwarePlatformDriver.php
1.02
KB
-rwxrwxr-x
2026-02-24 08:03
Save
Rename
<?php namespace Doctrine\DBAL; use Doctrine\Common\Cache\Cache; use Doctrine\Common\Cache\Psr6\CacheAdapter; use Doctrine\Common\Cache\Psr6\DoctrineProvider; use Doctrine\DBAL\Driver\Middleware; use Doctrine\DBAL\Logging\SQLLogger; use Doctrine\DBAL\Schema\SchemaManagerFactory; use Doctrine\Deprecations\Deprecation; use Psr\Cache\CacheItemPoolInterface; use RuntimeException; use function class_exists; use function func_num_args; use function interface_exists; use function sprintf; /** * Configuration container for the Doctrine DBAL. */ class Configuration { /** @var Middleware[] */ private array $middlewares = []; /** * The SQL logger in use. If null, SQL logging is disabled. * * @var SQLLogger|null */ protected $sqlLogger; /** * The cache driver implementation that is used for query result caching. */ private ?CacheItemPoolInterface $resultCache = null; /** * The cache driver implementation that is used for query result caching. * * @deprecated Use {@see $resultCache} instead. * * @var Cache|null */ protected $resultCacheImpl; /** * The callable to use to filter schema assets. * * @var callable|null */ protected $schemaAssetsFilter; /** * The default auto-commit mode for connections. * * @var bool */ protected $autoCommit = true; /** * Whether type comments should be disabled to provide the same DB schema than * will be obtained with DBAL 4.x. This is useful when relying only on the * platform-aware schema comparison (which does not need those type comments) * rather than the deprecated legacy tooling. */ private bool $disableTypeComments = false; private ?SchemaManagerFactory $schemaManagerFactory = null; public function __construct() { $this->schemaAssetsFilter = static function (): bool { return true; }; } /** * Sets the SQL logger to use. Defaults to NULL which means SQL logging is disabled. * * @deprecated Use {@see setMiddlewares()} and {@see \Doctrine\DBAL\Logging\Middleware} instead. */ public function setSQLLogger(?SQLLogger $logger = null): void { Deprecation::trigger( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/4967', '%s is deprecated, use setMiddlewares() and Logging\\Middleware instead.', __METHOD__, ); $this->sqlLogger = $logger; } /** * Gets the SQL logger that is used. * * @deprecated */ public function getSQLLogger(): ?SQLLogger { Deprecation::triggerIfCalledFromOutside( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/4967', '%s is deprecated.', __METHOD__, ); return $this->sqlLogger; } /** * Gets the cache driver implementation that is used for query result caching. */ public function getResultCache(): ?CacheItemPoolInterface { return $this->resultCache; } /** * Gets the cache driver implementation that is used for query result caching. * * @deprecated Use {@see getResultCache()} instead. */ public function getResultCacheImpl(): ?Cache { Deprecation::trigger( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/4620', '%s is deprecated, call getResultCache() instead.', __METHOD__, ); if ($this->resultCache !== null && ! interface_exists(Cache::class)) { throw new RuntimeException(sprintf( 'Calling %s() is not supported if the doctrine/cache package is not installed. ' . 'Try running "composer require doctrine/cache" or migrate cache access to PSR-6.', __METHOD__, )); } return $this->resultCacheImpl; } /** * Sets the cache driver implementation that is used for query result caching. */ public function setResultCache(CacheItemPoolInterface $cache): void { if (class_exists(DoctrineProvider::class)) { $this->resultCacheImpl = DoctrineProvider::wrap($cache); } $this->resultCache = $cache; } /** * Sets the cache driver implementation that is used for query result caching. * * @deprecated Use {@see setResultCache()} instead. */ public function setResultCacheImpl(Cache $cacheImpl): void { Deprecation::trigger( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/4620', '%s is deprecated, call setResultCache() instead.', __METHOD__, ); $this->resultCacheImpl = $cacheImpl; $this->resultCache = CacheAdapter::wrap($cacheImpl); } /** * Sets the callable to use to filter schema assets. */ public function setSchemaAssetsFilter(?callable $callable = null): void { if (func_num_args() < 1) { Deprecation::trigger( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/5483', 'Not passing an argument to %s is deprecated.', __METHOD__, ); } elseif ($callable === null) { Deprecation::trigger( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/5483', 'Using NULL as a schema asset filter is deprecated.' . ' Use a callable that always returns true instead.', ); } $this->schemaAssetsFilter = $callable; } /** * Returns the callable to use to filter schema assets. */ public function getSchemaAssetsFilter(): ?callable { return $this->schemaAssetsFilter; } /** * Sets the default auto-commit mode for connections. * * If a connection is in auto-commit mode, then all its SQL statements will be executed and committed as individual * transactions. Otherwise, its SQL statements are grouped into transactions that are terminated by a call to either * the method commit or the method rollback. By default, new connections are in auto-commit mode. * * @see getAutoCommit * * @param bool $autoCommit True to enable auto-commit mode; false to disable it */ public function setAutoCommit(bool $autoCommit): void { $this->autoCommit = $autoCommit; } /** * Returns the default auto-commit mode for connections. * * @see setAutoCommit * * @return bool True if auto-commit mode is enabled by default for connections, false otherwise. */ public function getAutoCommit(): bool { return $this->autoCommit; } /** * @param Middleware[] $middlewares * * @return $this */ public function setMiddlewares(array $middlewares): self { $this->middlewares = $middlewares; return $this; } /** @return Middleware[] */ public function getMiddlewares(): array { return $this->middlewares; } public function getSchemaManagerFactory(): ?SchemaManagerFactory { return $this->schemaManagerFactory; } /** @return $this */ public function setSchemaManagerFactory(SchemaManagerFactory $schemaManagerFactory): self { $this->schemaManagerFactory = $schemaManagerFactory; return $this; } public function getDisableTypeComments(): bool { return $this->disableTypeComments; } /** @return $this */ public function setDisableTypeComments(bool $disableTypeComments): self { $this->disableTypeComments = $disableTypeComments; return $this; } }