mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 22:02:22 +08:00
52 lines
944 B
PHP
52 lines
944 B
PHP
|
<?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()
|
||
|
{
|
||
|
}
|
||
|
}
|