Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.117.132.79
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
doctrine /
dbal /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
ArrayParameters
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Cache
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Connections
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Driver
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Event
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Exception
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Id
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Logging
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Platforms
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Portability
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Query
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
SQL
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Schema
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Tools
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Types
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
ColumnCase.php
429
B
-rw-rw-r--
2022-08-21 14:21
Configuration.php
6.09
KB
-rw-rw-r--
2022-08-21 14:21
Connection.php
58.91
KB
-rw-rw-r--
2022-08-21 14:21
ConnectionException.php
969
B
-rw-rw-r--
2022-08-21 14:21
Driver.php
1.43
KB
-rw-rw-r--
2022-08-21 14:21
DriverManager.php
14.99
KB
-rw-rw-r--
2022-08-21 14:21
Events.php
1.32
KB
-rw-rw-r--
2022-08-21 14:21
Exception.php
4.91
KB
-rw-rw-r--
2022-08-21 14:21
ExpandArrayParameters.php
3.72
KB
-rw-rw-r--
2022-08-21 14:21
FetchMode.php
331
B
-rw-rw-r--
2022-08-21 14:21
LockMode.php
419
B
-rw-rw-r--
2022-08-21 14:21
ParameterType.php
982
B
-rw-rw-r--
2022-08-21 14:21
Query.php
1.19
KB
-rw-rw-r--
2022-08-21 14:21
Result.php
7.9
KB
-rw-rw-r--
2022-08-21 14:21
Statement.php
7.45
KB
-rw-rw-r--
2022-08-21 14:21
TransactionIsolationLevel.php
613
B
-rw-rw-r--
2022-08-21 14:21
VersionAwarePlatformDriver.php
1.02
KB
-rw-rw-r--
2022-08-21 14:21
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\Deprecations\Deprecation; use Psr\Cache\CacheItemPoolInterface; use function func_num_args; /** * 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; 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__ ); return $this->resultCacheImpl; } /** * Sets the cache driver implementation that is used for query result caching. */ public function setResultCache(CacheItemPoolInterface $cache): void { $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; } }