@@ -882,7 +882,7 @@ public function prepare(string $sql) : DriverStatement
882
882
*
883
883
* @param string $query The SQL query to execute.
884
884
* @param mixed[] $params The parameters to bind to the query, if any.
885
- * @param ( int|string|Type)[] $types The types the previous parameters are in.
885
+ * @param int[] |string[] |Type[] $types The types the previous parameters are in.
886
886
* @param QueryCacheProfile|null $qcp The query cache profile, optional.
887
887
*
888
888
* @throws DBALException
@@ -926,10 +926,10 @@ public function executeQuery(string $query, array $params = [], $types = [], ?Qu
926
926
/**
927
927
* Executes a caching query.
928
928
*
929
- * @param string $query The SQL query to execute.
930
- * @param mixed[] $params The parameters to bind to the query, if any.
931
- * @param ( int|string) |Type[] $types The types the previous parameters are in.
932
- * @param QueryCacheProfile $qcp The query cache profile.
929
+ * @param string $query The SQL query to execute.
930
+ * @param mixed[] $params The parameters to bind to the query, if any.
931
+ * @param int[] |string[] |Type[] $types The types the previous parameters are in.
932
+ * @param QueryCacheProfile $qcp The query cache profile.
933
933
*
934
934
* @throws DBALException
935
935
*/
@@ -1016,9 +1016,9 @@ public function query(string $sql) : ResultStatement
1016
1016
*
1017
1017
* This method supports PDO binding types as well as DBAL mapping types.
1018
1018
*
1019
- * @param string $query The SQL query.
1020
- * @param mixed[] $params The query parameters.
1021
- * @param ( int|string|Type) [] $types The parameter types.
1019
+ * @param string $query The SQL query.
1020
+ * @param mixed[] $params The query parameters.
1021
+ * @param int[] |string[] |Type[] $types The parameter types.
1022
1022
*
1023
1023
* @throws DBALException
1024
1024
*/
@@ -1460,9 +1460,9 @@ public function convertToPHPValue($value, $type)
1460
1460
* Binds a set of parameters, some or all of which are typed with a PDO binding type
1461
1461
* or DBAL mapping type, to a given statement.
1462
1462
*
1463
- * @param DriverStatement $stmt The statement to bind the values to.
1464
- * @param mixed[] $params The map/list of named/positional parameters.
1465
- * @param ( int|string|Type) [] $types The parameter types.
1463
+ * @param DriverStatement $stmt The statement to bind the values to.
1464
+ * @param mixed[] $params The map/list of named/positional parameters.
1465
+ * @param int[] |string[] |Type[] $types The parameter types.
1466
1466
*/
1467
1467
private function _bindTypedValues (DriverStatement $ stmt , array $ params , array $ types ) : void
1468
1468
{
0 commit comments