File "Middleware.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/psy/psysh/src/Output/Middleware.php
File size: 477 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Logging;
use Doctrine\DBAL\Driver as DriverInterface;
use Doctrine\DBAL\Driver\Middleware as MiddlewareInterface;
use Psr\Log\LoggerInterface;
final class Middleware implements MiddlewareInterface
{
public function __construct(private readonly LoggerInterface $logger)
{
}
public function wrap(DriverInterface $driver): DriverInterface
{
return new Driver($driver, $this->logger);
}
}