@@ -885,7 +885,7 @@ public function prepare(string $sql) : DriverStatement
885
885
*
886
886
* @param string $query The SQL query to execute.
887
887
* @param mixed[] $params The parameters to bind to the query, if any.
888
- * @param ( int|string|Type)[] $types The types the previous parameters are in.
888
+ * @param int[] |string[] |Type[] $types The types the previous parameters are in.
889
889
* @param QueryCacheProfile|null $qcp The query cache profile, optional.
890
890
*
891
891
* @return ResultStatement The executed statement.
@@ -931,10 +931,10 @@ public function executeQuery(string $query, array $params = [], $types = [], ?Qu
931
931
/**
932
932
* Executes a caching query.
933
933
*
934
- * @param string $query The SQL query to execute.
935
- * @param mixed[] $params The parameters to bind to the query, if any.
936
- * @param ( int|string) |Type[] $types The types the previous parameters are in.
937
- * @param QueryCacheProfile $qcp The query cache profile.
934
+ * @param string $query The SQL query to execute.
935
+ * @param mixed[] $params The parameters to bind to the query, if any.
936
+ * @param int[] |string[] |Type[] $types The types the previous parameters are in.
937
+ * @param QueryCacheProfile $qcp The query cache profile.
938
938
*
939
939
* @return ResultStatement
940
940
*
@@ -1023,9 +1023,9 @@ public function query(string $sql) : ResultStatement
1023
1023
*
1024
1024
* This method supports PDO binding types as well as DBAL mapping types.
1025
1025
*
1026
- * @param string $query The SQL query.
1027
- * @param mixed[] $params The query parameters.
1028
- * @param ( int|string|Type) [] $types The parameter types.
1026
+ * @param string $query The SQL query.
1027
+ * @param mixed[] $params The query parameters.
1028
+ * @param int[] |string[] |Type[] $types The parameter types.
1029
1029
*
1030
1030
* @throws DBALException
1031
1031
*/
@@ -1467,9 +1467,9 @@ public function convertToPHPValue($value, $type)
1467
1467
* Binds a set of parameters, some or all of which are typed with a PDO binding type
1468
1468
* or DBAL mapping type, to a given statement.
1469
1469
*
1470
- * @param DriverStatement $stmt The statement to bind the values to.
1471
- * @param mixed[] $params The map/list of named/positional parameters.
1472
- * @param ( int|string|Type) [] $types The parameter types.
1470
+ * @param DriverStatement $stmt The statement to bind the values to.
1471
+ * @param mixed[] $params The map/list of named/positional parameters.
1472
+ * @param int[] |string[] |Type[] $types The parameter types.
1473
1473
*/
1474
1474
private function _bindTypedValues (DriverStatement $ stmt , array $ params , array $ types ) : void
1475
1475
{
0 commit comments