Unverified Commit 9427bd3d authored by Ronald Márföldi's avatar Ronald Márföldi Committed by GitHub

Fixed type hints in DockBlocks

As the explanatory description says: "The name or position of the parameter."
parent 26cd8d2c
...@@ -97,7 +97,7 @@ class Statement implements \IteratorAggregate, DriverStatement ...@@ -97,7 +97,7 @@ class Statement implements \IteratorAggregate, DriverStatement
* type and the value undergoes the conversion routines of the mapping type before * type and the value undergoes the conversion routines of the mapping type before
* being bound. * being bound.
* *
* @param string $name The name or position of the parameter. * @param string|int $name The name or position of the parameter.
* @param mixed $value The value of the parameter. * @param mixed $value The value of the parameter.
* @param mixed $type Either a PDO binding type or a DBAL mapping type name or instance. * @param mixed $type Either a PDO binding type or a DBAL mapping type name or instance.
* *
...@@ -129,7 +129,7 @@ class Statement implements \IteratorAggregate, DriverStatement ...@@ -129,7 +129,7 @@ class Statement implements \IteratorAggregate, DriverStatement
* *
* Binding a parameter by reference does not support DBAL mapping types. * Binding a parameter by reference does not support DBAL mapping types.
* *
* @param string $name The name or position of the parameter. * @param string|int $name The name or position of the parameter.
* @param mixed $var The reference to the variable to bind. * @param mixed $var The reference to the variable to bind.
* @param int $type The PDO binding type. * @param int $type The PDO binding type.
* @param int|null $length Must be specified when using an OUT bind * @param int|null $length Must be specified when using an OUT bind
......
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