Unverified Commit de23082f authored by Marco Pivetta's avatar Marco Pivetta Committed by GitHub

Merge pull request #3073 from IMSoP/issue-2683-2.5.x

2.5.x branch should not contain the PHP 5.5-only ::class syntax
parents 9315e61c d2b5db38
......@@ -34,7 +34,7 @@ class Connection extends PDOConnection implements \Doctrine\DBAL\Driver\Connecti
public function __construct($dsn, $user = null, $password = null, array $options = null)
{
parent::__construct($dsn, $user, $password, $options);
$this->setAttribute(\PDO::ATTR_STATEMENT_CLASS, array(Statement::class, array()));
$this->setAttribute(\PDO::ATTR_STATEMENT_CLASS, array('Doctrine\DBAL\Driver\PDOSqlsrv\Statement', array()));
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment