vendor/sentry/sentry-symfony/src/Tracing/Doctrine/DBAL/TracingDriverConnectionFactory.php line 35

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sentry\SentryBundle\Tracing\Doctrine\DBAL;
  4. use Doctrine\DBAL\Driver\Connection;
  5. use Doctrine\DBAL\Driver\ServerInfoAwareConnection;
  6. use Doctrine\DBAL\Platforms\AbstractPlatform;
  7. use Sentry\State\HubInterface;
  8. /**
  9.  * @internal
  10.  */
  11. final class TracingDriverConnectionFactory implements TracingDriverConnectionFactoryInterface
  12. {
  13.     /**
  14.      * @var HubInterface The current hub
  15.      */
  16.     private $hub;
  17.     /**
  18.      * Constructor.
  19.      *
  20.      * @param HubInterface $hub The current hub
  21.      */
  22.     public function __construct(HubInterface $hub)
  23.     {
  24.         $this->hub $hub;
  25.     }
  26.     /**
  27.      * {@inheritdoc}
  28.      */
  29.     public function create(Connection $connectionAbstractPlatform $databasePlatform, array $params): TracingDriverConnectionInterface
  30.     {
  31.         $tracingDriverConnection = new TracingDriverConnection(
  32.             $this->hub,
  33.             $connection,
  34.             $databasePlatform->getName(),
  35.             $params
  36.         );
  37.         if ($connection instanceof ServerInfoAwareConnection) {
  38.             $tracingDriverConnection = new TracingServerInfoAwareDriverConnection($tracingDriverConnection);
  39.         }
  40.         return $tracingDriverConnection;
  41.     }
  42. }