ok

Mini Shell

Direktori : /home2/selectio/public_html/myclassicfit.com-1/vendor/doctrine/dbal/src/Logging/
Upload File :
Current File : /home2/selectio/public_html/myclassicfit.com-1/vendor/doctrine/dbal/src/Logging/LoggerChain.php

<?php

namespace Doctrine\DBAL\Logging;

use Doctrine\Deprecations\Deprecation;

/**
 * Chains multiple SQLLogger.
 *
 * @deprecated
 */
class LoggerChain implements SQLLogger
{
    /** @var iterable<SQLLogger> */
    private iterable $loggers;

    /** @param iterable<SQLLogger> $loggers */
    public function __construct(iterable $loggers = [])
    {
        Deprecation::trigger(
            'doctrine/dbal',
            'https://github.com/doctrine/dbal/pull/4967',
            'LoggerChain is deprecated',
        );

        $this->loggers = $loggers;
    }

    /**
     * {@inheritdoc}
     */
    public function startQuery($sql, ?array $params = null, ?array $types = null)
    {
        foreach ($this->loggers as $logger) {
            $logger->startQuery($sql, $params, $types);
        }
    }

    /**
     * {@inheritdoc}
     */
    public function stopQuery()
    {
        foreach ($this->loggers as $logger) {
            $logger->stopQuery();
        }
    }
}

Zerion Mini Shell 1.0