Вход Регистрация
Файл: vendor/doctrine/dbal/lib/Doctrine/DBAL/Logging/EchoSQLLogger.php
Строк: 31
<?php

namespace DoctrineDBALLogging;

use 
DoctrineDeprecationsDeprecation;

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()
    {
    }
}
Онлайн: 2
Реклама