init
This commit is contained in:
126
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php
vendored
Normal file
126
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Connection.php
vendored
Normal file
@@ -0,0 +1,126 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bridge\Doctrine\Middleware\Debug;
|
||||
|
||||
use Doctrine\DBAL\Driver\Connection as ConnectionInterface;
|
||||
use Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware;
|
||||
use Doctrine\DBAL\Driver\Result;
|
||||
use Symfony\Component\Stopwatch\Stopwatch;
|
||||
|
||||
/**
|
||||
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
|
||||
* @author Alexander M. Turek <me@derrabus.de>
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
final class Connection extends AbstractConnectionMiddleware
|
||||
{
|
||||
public function __construct(
|
||||
ConnectionInterface $connection,
|
||||
private readonly DebugDataHolder $debugDataHolder,
|
||||
private readonly ?Stopwatch $stopwatch,
|
||||
private readonly string $connectionName,
|
||||
) {
|
||||
parent::__construct($connection);
|
||||
}
|
||||
|
||||
public function prepare(string $sql): Statement
|
||||
{
|
||||
return new Statement(
|
||||
parent::prepare($sql),
|
||||
$this->debugDataHolder,
|
||||
$this->connectionName,
|
||||
$sql,
|
||||
$this->stopwatch,
|
||||
);
|
||||
}
|
||||
|
||||
public function query(string $sql): Result
|
||||
{
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query($sql));
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query->start();
|
||||
|
||||
try {
|
||||
return parent::query($sql);
|
||||
} finally {
|
||||
$query->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
|
||||
public function exec(string $sql): int
|
||||
{
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query($sql));
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query->start();
|
||||
|
||||
try {
|
||||
$affectedRows = parent::exec($sql);
|
||||
} finally {
|
||||
$query->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
|
||||
return $affectedRows;
|
||||
}
|
||||
|
||||
public function beginTransaction(): void
|
||||
{
|
||||
$query = new Query('"START TRANSACTION"');
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query);
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query->start();
|
||||
|
||||
try {
|
||||
parent::beginTransaction();
|
||||
} finally {
|
||||
$query->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
|
||||
public function commit(): void
|
||||
{
|
||||
$query = new Query('"COMMIT"');
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query);
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query->start();
|
||||
|
||||
try {
|
||||
parent::commit();
|
||||
} finally {
|
||||
$query->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
|
||||
public function rollBack(): void
|
||||
{
|
||||
$query = new Query('"ROLLBACK"');
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query);
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query->start();
|
||||
|
||||
try {
|
||||
parent::rollBack();
|
||||
} finally {
|
||||
$query->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
}
|
||||
133
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php
vendored
Normal file
133
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Connection.php
vendored
Normal file
@@ -0,0 +1,133 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3;
|
||||
|
||||
use Doctrine\DBAL\Driver\Connection as ConnectionInterface;
|
||||
use Doctrine\DBAL\Driver\Middleware\AbstractConnectionMiddleware;
|
||||
use Doctrine\DBAL\Driver\Result;
|
||||
use Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder;
|
||||
use Symfony\Bridge\Doctrine\Middleware\Debug\Query;
|
||||
use Symfony\Component\Stopwatch\Stopwatch;
|
||||
|
||||
/**
|
||||
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
final class Connection extends AbstractConnectionMiddleware
|
||||
{
|
||||
private int $nestingLevel = 0;
|
||||
|
||||
public function __construct(
|
||||
ConnectionInterface $connection,
|
||||
private readonly DebugDataHolder $debugDataHolder,
|
||||
private readonly ?Stopwatch $stopwatch,
|
||||
private readonly string $connectionName,
|
||||
) {
|
||||
parent::__construct($connection);
|
||||
}
|
||||
|
||||
public function prepare(string $sql): Statement
|
||||
{
|
||||
return new Statement(
|
||||
parent::prepare($sql),
|
||||
$this->debugDataHolder,
|
||||
$this->connectionName,
|
||||
$sql,
|
||||
$this->stopwatch,
|
||||
);
|
||||
}
|
||||
|
||||
public function query(string $sql): Result
|
||||
{
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query($sql));
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query->start();
|
||||
|
||||
try {
|
||||
return parent::query($sql);
|
||||
} finally {
|
||||
$query->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
|
||||
public function exec(string $sql): int
|
||||
{
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query($sql));
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query->start();
|
||||
|
||||
try {
|
||||
return parent::exec($sql);
|
||||
} finally {
|
||||
$query->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
|
||||
public function beginTransaction(): bool
|
||||
{
|
||||
$query = null;
|
||||
if (1 === ++$this->nestingLevel) {
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query('"START TRANSACTION"'));
|
||||
}
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query?->start();
|
||||
|
||||
try {
|
||||
return parent::beginTransaction();
|
||||
} finally {
|
||||
$query?->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
|
||||
public function commit(): bool
|
||||
{
|
||||
$query = null;
|
||||
if (1 === $this->nestingLevel--) {
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query('"COMMIT"'));
|
||||
}
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query?->start();
|
||||
|
||||
try {
|
||||
return parent::commit();
|
||||
} finally {
|
||||
$query?->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
|
||||
public function rollBack(): bool
|
||||
{
|
||||
$query = null;
|
||||
if (1 === $this->nestingLevel--) {
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query = new Query('"ROLLBACK"'));
|
||||
}
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query?->start();
|
||||
|
||||
try {
|
||||
return parent::rollBack();
|
||||
} finally {
|
||||
$query?->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
}
|
||||
76
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php
vendored
Normal file
76
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/DBAL3/Statement.php
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bridge\Doctrine\Middleware\Debug\DBAL3;
|
||||
|
||||
use Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware;
|
||||
use Doctrine\DBAL\Driver\Result as ResultInterface;
|
||||
use Doctrine\DBAL\Driver\Statement as StatementInterface;
|
||||
use Doctrine\DBAL\ParameterType;
|
||||
use Symfony\Bridge\Doctrine\Middleware\Debug\DebugDataHolder;
|
||||
use Symfony\Bridge\Doctrine\Middleware\Debug\Query;
|
||||
use Symfony\Component\Stopwatch\Stopwatch;
|
||||
|
||||
/**
|
||||
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
final class Statement extends AbstractStatementMiddleware
|
||||
{
|
||||
private readonly Query $query;
|
||||
|
||||
public function __construct(
|
||||
StatementInterface $statement,
|
||||
private readonly DebugDataHolder $debugDataHolder,
|
||||
private readonly string $connectionName,
|
||||
string $sql,
|
||||
private readonly ?Stopwatch $stopwatch = null,
|
||||
) {
|
||||
$this->query = new Query($sql);
|
||||
|
||||
parent::__construct($statement);
|
||||
}
|
||||
|
||||
public function bindParam($param, &$variable, $type = ParameterType::STRING, $length = null): bool
|
||||
{
|
||||
$this->query->setParam($param, $variable, $type);
|
||||
|
||||
return parent::bindParam($param, $variable, $type, ...\array_slice(\func_get_args(), 3));
|
||||
}
|
||||
|
||||
public function bindValue($param, $value, $type = ParameterType::STRING): bool
|
||||
{
|
||||
$this->query->setValue($param, $value, $type);
|
||||
|
||||
return parent::bindValue($param, $value, $type);
|
||||
}
|
||||
|
||||
public function execute($params = null): ResultInterface
|
||||
{
|
||||
if (null !== $params) {
|
||||
$this->query->setValues($params);
|
||||
}
|
||||
|
||||
// clone to prevent variables by reference to change
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query = clone $this->query);
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query->start();
|
||||
|
||||
try {
|
||||
return parent::execute($params);
|
||||
} finally {
|
||||
$query->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
}
|
||||
48
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/DebugDataHolder.php
vendored
Normal file
48
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/DebugDataHolder.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bridge\Doctrine\Middleware\Debug;
|
||||
|
||||
/**
|
||||
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
|
||||
*/
|
||||
class DebugDataHolder
|
||||
{
|
||||
private array $data = [];
|
||||
|
||||
public function addQuery(string $connectionName, Query $query): void
|
||||
{
|
||||
$this->data[$connectionName][] = [
|
||||
'sql' => $query->getSql(),
|
||||
'params' => $query->getParams(),
|
||||
'types' => $query->getTypes(),
|
||||
'executionMS' => $query->getDuration(...), // stop() may not be called at this point
|
||||
];
|
||||
}
|
||||
|
||||
public function getData(): array
|
||||
{
|
||||
foreach ($this->data as $connectionName => $dataForConn) {
|
||||
foreach ($dataForConn as $idx => $data) {
|
||||
if (\is_callable($data['executionMS'])) {
|
||||
$this->data[$connectionName][$idx]['executionMS'] = $data['executionMS']();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
public function reset(): void
|
||||
{
|
||||
$this->data = [];
|
||||
}
|
||||
}
|
||||
55
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php
vendored
Normal file
55
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bridge\Doctrine\Middleware\Debug;
|
||||
|
||||
use Doctrine\DBAL\Driver as DriverInterface;
|
||||
use Doctrine\DBAL\Driver\Connection as ConnectionInterface;
|
||||
use Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware;
|
||||
use Symfony\Component\Stopwatch\Stopwatch;
|
||||
|
||||
/**
|
||||
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
final class Driver extends AbstractDriverMiddleware
|
||||
{
|
||||
public function __construct(
|
||||
DriverInterface $driver,
|
||||
private readonly DebugDataHolder $debugDataHolder,
|
||||
private readonly ?Stopwatch $stopwatch,
|
||||
private readonly string $connectionName,
|
||||
) {
|
||||
parent::__construct($driver);
|
||||
}
|
||||
|
||||
public function connect(array $params): ConnectionInterface
|
||||
{
|
||||
$connection = parent::connect($params);
|
||||
|
||||
if ('void' !== (string) (new \ReflectionMethod(ConnectionInterface::class, 'commit'))->getReturnType()) {
|
||||
return new DBAL3\Connection(
|
||||
$connection,
|
||||
$this->debugDataHolder,
|
||||
$this->stopwatch,
|
||||
$this->connectionName
|
||||
);
|
||||
}
|
||||
|
||||
return new Connection(
|
||||
$connection,
|
||||
$this->debugDataHolder,
|
||||
$this->stopwatch,
|
||||
$this->connectionName
|
||||
);
|
||||
}
|
||||
}
|
||||
36
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Middleware.php
vendored
Normal file
36
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Middleware.php
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bridge\Doctrine\Middleware\Debug;
|
||||
|
||||
use Doctrine\DBAL\Driver as DriverInterface;
|
||||
use Doctrine\DBAL\Driver\Middleware as MiddlewareInterface;
|
||||
use Symfony\Component\Stopwatch\Stopwatch;
|
||||
|
||||
/**
|
||||
* Middleware to collect debug data.
|
||||
*
|
||||
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
|
||||
*/
|
||||
final class Middleware implements MiddlewareInterface
|
||||
{
|
||||
public function __construct(
|
||||
private readonly DebugDataHolder $debugDataHolder,
|
||||
private readonly ?Stopwatch $stopwatch,
|
||||
private readonly string $connectionName = 'default',
|
||||
) {
|
||||
}
|
||||
|
||||
public function wrap(DriverInterface $driver): DriverInterface
|
||||
{
|
||||
return new Driver($driver, $this->debugDataHolder, $this->stopwatch, $this->connectionName);
|
||||
}
|
||||
}
|
||||
113
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Query.php
vendored
Normal file
113
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Query.php
vendored
Normal file
@@ -0,0 +1,113 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bridge\Doctrine\Middleware\Debug;
|
||||
|
||||
use Doctrine\DBAL\ParameterType;
|
||||
|
||||
/**
|
||||
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class Query
|
||||
{
|
||||
private array $params = [];
|
||||
|
||||
/** @var array<ParameterType|int> */
|
||||
private array $types = [];
|
||||
|
||||
private ?float $start = null;
|
||||
private ?float $duration = null;
|
||||
|
||||
public function __construct(
|
||||
private readonly string $sql,
|
||||
) {
|
||||
}
|
||||
|
||||
public function start(): void
|
||||
{
|
||||
$this->start = microtime(true);
|
||||
}
|
||||
|
||||
public function stop(): void
|
||||
{
|
||||
if (null !== $this->start) {
|
||||
$this->duration = microtime(true) - $this->start;
|
||||
}
|
||||
}
|
||||
|
||||
public function setParam(string|int $param, mixed &$variable, ParameterType|int $type): void
|
||||
{
|
||||
// Numeric indexes start at 0 in profiler
|
||||
$idx = \is_int($param) ? $param - 1 : $param;
|
||||
|
||||
$this->params[$idx] = &$variable;
|
||||
$this->types[$idx] = $type;
|
||||
}
|
||||
|
||||
public function setValue(string|int $param, mixed $value, ParameterType|int $type): void
|
||||
{
|
||||
// Numeric indexes start at 0 in profiler
|
||||
$idx = \is_int($param) ? $param - 1 : $param;
|
||||
|
||||
$this->params[$idx] = $value;
|
||||
$this->types[$idx] = $type;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string|int, string|int|float> $values
|
||||
*/
|
||||
public function setValues(array $values): void
|
||||
{
|
||||
foreach ($values as $param => $value) {
|
||||
$this->setValue($param, $value, ParameterType::STRING);
|
||||
}
|
||||
}
|
||||
|
||||
public function getSql(): string
|
||||
{
|
||||
return $this->sql;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<int, string|int|float>
|
||||
*/
|
||||
public function getParams(): array
|
||||
{
|
||||
return $this->params;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<int, int|ParameterType>
|
||||
*/
|
||||
public function getTypes(): array
|
||||
{
|
||||
return $this->types;
|
||||
}
|
||||
|
||||
/**
|
||||
* Query duration in seconds.
|
||||
*/
|
||||
public function getDuration(): ?float
|
||||
{
|
||||
return $this->duration;
|
||||
}
|
||||
|
||||
public function __clone()
|
||||
{
|
||||
$copy = [];
|
||||
foreach ($this->params as $param => $valueOrVariable) {
|
||||
$copy[$param] = $valueOrVariable;
|
||||
}
|
||||
$this->params = $copy;
|
||||
}
|
||||
}
|
||||
64
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
vendored
Normal file
64
backend/vendor/symfony/doctrine-bridge/Middleware/Debug/Statement.php
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bridge\Doctrine\Middleware\Debug;
|
||||
|
||||
use Doctrine\DBAL\Driver\Middleware\AbstractStatementMiddleware;
|
||||
use Doctrine\DBAL\Driver\Result as ResultInterface;
|
||||
use Doctrine\DBAL\Driver\Statement as StatementInterface;
|
||||
use Doctrine\DBAL\ParameterType;
|
||||
use Symfony\Component\Stopwatch\Stopwatch;
|
||||
|
||||
/**
|
||||
* @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
|
||||
* @author Alexander M. Turek <me@derrabus.de>
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
final class Statement extends AbstractStatementMiddleware
|
||||
{
|
||||
private Query $query;
|
||||
|
||||
public function __construct(
|
||||
StatementInterface $statement,
|
||||
private readonly DebugDataHolder $debugDataHolder,
|
||||
private readonly string $connectionName,
|
||||
string $sql,
|
||||
private readonly ?Stopwatch $stopwatch = null,
|
||||
) {
|
||||
parent::__construct($statement);
|
||||
|
||||
$this->query = new Query($sql);
|
||||
}
|
||||
|
||||
public function bindValue(int|string $param, mixed $value, ParameterType $type): void
|
||||
{
|
||||
$this->query->setValue($param, $value, $type);
|
||||
|
||||
parent::bindValue($param, $value, $type);
|
||||
}
|
||||
|
||||
public function execute(): ResultInterface
|
||||
{
|
||||
// clone to prevent variables by reference to change
|
||||
$this->debugDataHolder->addQuery($this->connectionName, $query = clone $this->query);
|
||||
|
||||
$this->stopwatch?->start('doctrine', 'doctrine');
|
||||
$query->start();
|
||||
|
||||
try {
|
||||
return parent::execute();
|
||||
} finally {
|
||||
$query->stop();
|
||||
$this->stopwatch?->stop('doctrine');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user