2 declare(strict_types = 1);
25 class Connection extends \Doctrine\DBAL\Driver\PDOSqlsrv\Connection
30 public function __construct($dsn, $user =
null, $password =
null, ?array $options =
null)
32 parent::__construct($dsn, $user, $password, $options);
33 $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, [Statement::class, []]);