Actualización

This commit is contained in:
Xes
2025-04-10 12:24:57 +02:00
parent 8969cc929d
commit 45420b6f0d
39760 changed files with 4303286 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<?php
namespace Doctrine\DBAL\Logging;
use Doctrine\Deprecations\Deprecation;
use function var_dump;
use const PHP_EOL;
/**
* A SQL logger that logs to the standard output using echo/var_dump.
*
* @deprecated
*/
class EchoSQLLogger implements SQLLogger
{
public function __construct()
{
Deprecation::trigger(
'doctrine/dbal',
'https://github.com/doctrine/dbal/pull/3935',
'EchoSQLLogger is deprecated without replacement, move the code into your project if you rely on it.'
);
}
/**
* {@inheritdoc}
*/
public function startQuery($sql, ?array $params = null, ?array $types = null)
{
echo $sql . PHP_EOL;
if ($params) {
var_dump($params);
}
if (! $types) {
return;
}
var_dump($types);
}
/**
* {@inheritdoc}
*/
public function stopQuery()
{
}
}