vendor/symfony/doctrine-bridge/Middleware/Debug/Driver.php line 37

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Bridge\Doctrine\Middleware\Debug;
  11. use Doctrine\DBAL\Driver as DriverInterface;
  12. use Doctrine\DBAL\Driver\Middleware\AbstractDriverMiddleware;
  13. use Symfony\Component\Stopwatch\Stopwatch;
  14. /**
  15.  * @author Laurent VOULLEMIER <laurent.voullemier@gmail.com>
  16.  *
  17.  * @internal
  18.  */
  19. final class Driver extends AbstractDriverMiddleware
  20. {
  21.     public function __construct(
  22.         DriverInterface $driver,
  23.         private DebugDataHolder $debugDataHolder,
  24.         private ?Stopwatch $stopwatch,
  25.         private string $connectionName,
  26.     ) {
  27.         parent::__construct($driver);
  28.     }
  29.     public function connect(array $params): Connection
  30.     {
  31.         return new Connection(
  32.             parent::connect($params),
  33.             $this->debugDataHolder,
  34.             $this->stopwatch,
  35.             $this->connectionName,
  36.         );
  37.     }
  38. }