Current File : /home/masbinta/public_html/vendor/doctrine/dbal/src/Logging/Connection.php |
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Logging;
use Doctrine\DBAL\Driver\Connection as ConnectionInterface;
use Doctrine\DBAL\Driver\Result;
use Doctrine\DBAL\Driver\ServerInfoAwareConnection;
use Doctrine\DBAL\Driver\Statement as DriverStatement;
use Doctrine\DBAL\ParameterType;
use Doctrine\Deprecations\Deprecation;
use LogicException;
use Psr\Log\LoggerInterface;
final class Connection implements ServerInfoAwareConnection
{
/** @var ConnectionInterface */
private $connection;
/** @var LoggerInterface */
private $logger;
/**
* @internal This connection can be only instantiated by its driver.
*/
public function __construct(ConnectionInterface $connection, LoggerInterface $logger)
{
$this->connection = $connection;
$this->logger = $logger;
}
public function __destruct()
{
$this->logger->info('Disconnecting');
}
public function prepare(string $sql): DriverStatement
{
return new Statement(
$this->connection->prepare($sql),
$this->logger,
$sql
);
}
public function query(string $sql): Result
{
$this->logger->debug('Executing query: {sql}', ['sql' => $sql]);
return $this->connection->query($sql);
}
/**
* {@inheritDoc}
*/
public function quote($value, $type = ParameterType::STRING)
{
return $this->connection->quote($value, $type);
}
public function exec(string $sql): int
{
$this->logger->debug('Executing statement: {sql}', ['sql' => $sql]);
return $this->connection->exec($sql);
}
/**
* {@inheritDoc}
*/
public function lastInsertId($name = null)
{
if ($name !== null) {
Deprecation::triggerIfCalledFromOutside(
'doctrine/dbal',
'https://github.com/doctrine/dbal/issues/4687',
'The usage of Connection::lastInsertId() with a sequence name is deprecated.'
);
}
return $this->connection->lastInsertId($name);
}
/**
* {@inheritDoc}
*/
public function beginTransaction()
{
$this->logger->debug('Beginning transaction');
return $this->connection->beginTransaction();
}
/**
* {@inheritDoc}
*/
public function commit()
{
$this->logger->debug('Committing transaction');
return $this->connection->commit();
}
/**
* {@inheritDoc}
*/
public function rollBack()
{
$this->logger->debug('Rolling back transaction');
return $this->connection->rollBack();
}
/**
* {@inheritDoc}
*/
public function getServerVersion()
{
if (! $this->connection instanceof ServerInfoAwareConnection) {
throw new LogicException('The underlying connection is not a ServerInfoAwareConnection');
}
return $this->connection->getServerVersion();
}
}