Unverified Commit 69742aee authored by Marco Pivetta's avatar Marco Pivetta Committed by GitHub

Merge pull request #3024 from morozov/issues/2953-bugfix

[DBAL-2953] Fixed unqualified PDO class name
parents 63efa539 a425c2d5
...@@ -305,7 +305,7 @@ class SQLSrvStatement implements IteratorAggregate, Statement ...@@ -305,7 +305,7 @@ class SQLSrvStatement implements IteratorAggregate, Statement
* *
* @throws SQLSrvException * @throws SQLSrvException
*/ */
public function fetch($fetchMode = null, $cursorOrientation = PDO::FETCH_ORI_NEXT, $cursorOffset = 0) public function fetch($fetchMode = null, $cursorOrientation = \PDO::FETCH_ORI_NEXT, $cursorOffset = 0)
{ {
// do not try fetching from the statement if it's not expected to contain result // do not try fetching from the statement if it's not expected to contain result
// in order to prevent exceptional situation // in order to prevent exceptional situation
......
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