PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
doctrine
/
dbal
/
src
/
Logging
<?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 { private LoggerInterface $logger; public function __construct(LoggerInterface $logger) { $this->logger = $logger; } public function wrap(DriverInterface $driver): DriverInterface { return new Driver($driver, $this->logger); } }
[-] SQLLogger.php
[edit]
[-] LoggerChain.php
[edit]
[-] DebugStack.php
[edit]
[-] Driver.php
[edit]
[+]
..
[-] Middleware.php
[edit]
[-] Connection.php
[edit]
[-] Statement.php
[edit]