%PDF- %PDF-
Direktori : /www/old2/_muzikoterapie/uloziste.eacm.cz/3rdparty/doctrine/dbal/src/Logging/ |
Current File : /www/old2/_muzikoterapie/uloziste.eacm.cz/3rdparty/doctrine/dbal/src/Logging/Driver.php |
<?php declare(strict_types=1); namespace Doctrine\DBAL\Logging; use Doctrine\DBAL\Driver as DriverInterface; use Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware; use Psr\Log\LoggerInterface; final class Driver extends AbstractDriverMiddleware { /** @var LoggerInterface */ private $logger; /** * @internal This driver can be only instantiated by its middleware. */ public function __construct(DriverInterface $driver, LoggerInterface $logger) { parent::__construct($driver); $this->logger = $logger; } /** * {@inheritDoc} */ public function connect(array $params) { $this->logger->info('Connecting with parameters {params}', ['params' => $this->maskPassword($params)]); return new Connection( parent::connect($params), $this->logger ); } /** * @param array<string,mixed> $params Connection parameters * * @return array<string,mixed> */ private function maskPassword(array $params): array { if (isset($params['password'])) { $params['password'] = '<redacted>'; } if (isset($params['url'])) { $params['url'] = '<redacted>'; } return $params; } }