Commit 803a9046 authored by Steve Müller's avatar Steve Müller

fix portability statement parameter binding delegation

parent 70c73d2e
...@@ -66,9 +66,9 @@ class Statement implements \IteratorAggregate, \Doctrine\DBAL\Driver\Statement ...@@ -66,9 +66,9 @@ class Statement implements \IteratorAggregate, \Doctrine\DBAL\Driver\Statement
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
public function bindParam($column, &$variable, $type = null,$length = null) public function bindParam($column, &$variable, $type = null, $length = null)
{ {
return $this->stmt->bindParam($column, $variable, $type); return $this->stmt->bindParam($column, $variable, $type, $length);
} }
/** /**
* {@inheritdoc} * {@inheritdoc}
......
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