/home/techb158/immovalet.com/vendor/doctrine/dbal/src
NameSizeModeActions
ArrayParameters/-0755rm
Cache/-0755rm
Connections/-0755rm
Driver/-0755rm
Event/-0755rm
Exception/-0755rm
Id/-0755rm
Logging/-0755rm
Platforms/-0755rm
Portability/-0755rm
Query/-0755rm
Schema/-0755rm
SQL/-0755rm
Tools/-0755rm
Types/-0755rm
ColumnCase.php4290644editdlrm
Configuration.php33630644editdlrm
Connection.php579890644editdlrm
ConnectionException.php9690644editdlrm
Driver.php13790644editdlrm
DriverManager.php154450644editdlrm
Events.php11300644editdlrm
Exception.php51980644editdlrm
ExpandArrayParameters.php37030644editdlrm
FetchMode.php3310644editdlrm
LockMode.php4190644editdlrm
ParameterType.php9820644editdlrm
Query.php12220644editdlrm
Result.php84840644editdlrm
Statement.php66270644editdlrm
TransactionIsolationLevel.php6130644editdlrm
VersionAwarePlatformDriver.php9460644editdlrm
Edit: /home/techb158/immovalet.com/vendor/doctrine/dbal/src/Configuration.php (3363B)
sqlLogger = $logger; } /** * Gets the SQL logger that is used. */ public function getSQLLogger(): ?SQLLogger { return $this->sqlLogger; } /** * Gets the cache driver implementation that is used for query result caching. */ public function getResultCacheImpl(): ?Cache { return $this->resultCacheImpl; } /** * Sets the cache driver implementation that is used for query result caching. */ public function setResultCacheImpl(Cache $cacheImpl): void { $this->resultCacheImpl = $cacheImpl; } /** * Sets the callable to use to filter schema assets. */ public function setSchemaAssetsFilter(?callable $callable = null): void { $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; } }