@@ -468,7 +468,7 @@ public function setAutoCommit($autoCommit)
468
468
* as an associative array.
469
469
*
470
470
* @param string $query SQL query
471
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
471
+ * @param list< mixed>|array<string, mixed> $params Query parameters
472
472
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
473
473
*
474
474
* @return array<string, mixed>|false False is returned if no rows are found.
@@ -489,7 +489,7 @@ public function fetchAssociative(string $query, array $params = [], array $types
489
489
* as a numerically indexed array.
490
490
*
491
491
* @param string $query SQL query
492
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
492
+ * @param list< mixed>|array<string, mixed> $params Query parameters
493
493
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
494
494
*
495
495
* @return list< mixed>|false False is returned if no rows are found.
@@ -510,7 +510,7 @@ public function fetchNumeric(string $query, array $params = [], array $types = [
510
510
* of the first row of the result.
511
511
*
512
512
* @param string $query SQL query
513
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
513
+ * @param list< mixed>|array<string, mixed> $params Query parameters
514
514
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
515
515
*
516
516
* @return mixed|false False is returned if no rows are found.
@@ -778,7 +778,7 @@ public function quote($value, $type = ParameterType::STRING)
778
778
* Prepares and executes an SQL query and returns the result as an array of numeric arrays.
779
779
*
780
780
* @param string $query SQL query
781
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
781
+ * @param list< mixed>|array<string, mixed> $params Query parameters
782
782
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
783
783
*
784
784
* @return list<list<mixed>>
@@ -798,7 +798,7 @@ public function fetchAllNumeric(string $query, array $params = [], array $types
798
798
* Prepares and executes an SQL query and returns the result as an array of associative arrays.
799
799
*
800
800
* @param string $query SQL query
801
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
801
+ * @param list< mixed>|array<string, mixed> $params Query parameters
802
802
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
803
803
*
804
804
* @return list<array<string,mixed>>
@@ -819,7 +819,7 @@ public function fetchAllAssociative(string $query, array $params = [], array $ty
819
819
* mapped to the first column and the values mapped to the second column.
820
820
*
821
821
* @param string $query SQL query
822
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
822
+ * @param list< mixed>|array<string, mixed> $params Query parameters
823
823
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
824
824
*
825
825
* @return array<mixed,mixed>
@@ -837,7 +837,7 @@ public function fetchAllKeyValue(string $query, array $params = [], array $types
837
837
* and their values.
838
838
*
839
839
* @param string $query SQL query
840
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
840
+ * @param list< mixed>|array<string, mixed> $params Query parameters
841
841
* @param array<int, int|string>|array<string, int|string> $types Parameter types
842
842
*
843
843
* @return array<mixed,array<string,mixed>>
@@ -853,7 +853,7 @@ public function fetchAllAssociativeIndexed(string $query, array $params = [], ar
853
853
* Prepares and executes an SQL query and returns the result as an array of the first column values.
854
854
*
855
855
* @param string $query SQL query
856
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
856
+ * @param list< mixed>|array<string, mixed> $params Query parameters
857
857
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
858
858
*
859
859
* @return list<mixed>
@@ -873,7 +873,7 @@ public function fetchFirstColumn(string $query, array $params = [], array $types
873
873
* Prepares and executes an SQL query and returns the result as an iterator over rows represented as numeric arrays.
874
874
*
875
875
* @param string $query SQL query
876
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
876
+ * @param list< mixed>|array<string, mixed> $params Query parameters
877
877
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
878
878
*
879
879
* @return Traversable<int,list<mixed>>
@@ -898,7 +898,7 @@ public function iterateNumeric(string $query, array $params = [], array $types =
898
898
* as associative arrays.
899
899
*
900
900
* @param string $query SQL query
901
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
901
+ * @param list< mixed>|array<string, mixed> $params Query parameters
902
902
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
903
903
*
904
904
* @return Traversable<int,array<string,mixed>>
@@ -923,7 +923,7 @@ public function iterateAssociative(string $query, array $params = [], array $typ
923
923
* mapped to the first column and the values mapped to the second column.
924
924
*
925
925
* @param string $query SQL query
926
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
926
+ * @param list< mixed>|array<string, mixed> $params Query parameters
927
927
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
928
928
*
929
929
* @return Traversable<mixed,mixed>
@@ -941,7 +941,7 @@ public function iterateKeyValue(string $query, array $params = [], array $types
941
941
* and their values.
942
942
*
943
943
* @param string $query SQL query
944
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
944
+ * @param list< mixed>|array<string, mixed> $params Query parameters
945
945
* @param array<int, int|string>|array<string, int|string> $types Parameter types
946
946
*
947
947
* @return Traversable<mixed,array<string,mixed>>
@@ -957,7 +957,7 @@ public function iterateAssociativeIndexed(string $query, array $params = [], arr
957
957
* Prepares and executes an SQL query and returns the result as an iterator over the first column values.
958
958
*
959
959
* @param string $query SQL query
960
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
960
+ * @param list< mixed>|array<string, mixed> $params Query parameters
961
961
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
962
962
*
963
963
* @return Traversable<int,mixed>
@@ -996,7 +996,7 @@ public function prepare(string $sql): Statement
996
996
* If an SQLLogger is configured, the execution is logged.
997
997
*
998
998
* @param string $sql SQL query
999
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
999
+ * @param list< mixed>|array<string, mixed> $params Query parameters
1000
1000
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
1001
1001
*
1002
1002
* @throws Exception
@@ -1049,7 +1049,7 @@ public function executeQuery(
1049
1049
* Executes a caching query.
1050
1050
*
1051
1051
* @param string $sql SQL query
1052
- * @param array<int, mixed>|array<string, mixed> $params Query parameters
1052
+ * @param list< mixed>|array<string, mixed> $params Query parameters
1053
1053
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
1054
1054
*
1055
1055
* @throws CacheException
@@ -1106,7 +1106,7 @@ public function executeCacheQuery($sql, $params, $types, QueryCacheProfile $qcp)
1106
1106
* This method supports PDO binding types as well as DBAL mapping types.
1107
1107
*
1108
1108
* @param string $sql SQL statement
1109
- * @param array<int, mixed>|array<string, mixed> $params Statement parameters
1109
+ * @param list< mixed>|array<string, mixed> $params Statement parameters
1110
1110
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
1111
1111
*
1112
1112
* @return int The number of affected rows.
@@ -1580,7 +1580,7 @@ public function convertToPHPValue($value, $type)
1580
1580
* or DBAL mapping type, to a given statement.
1581
1581
*
1582
1582
* @param DriverStatement $stmt Prepared statement
1583
- * @param array<int, mixed>|array<string, mixed> $params Statement parameters
1583
+ * @param list< mixed>|array<string, mixed> $params Statement parameters
1584
1584
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types Parameter types
1585
1585
*
1586
1586
* @throws Exception
@@ -1655,7 +1655,7 @@ public function createQueryBuilder()
1655
1655
/**
1656
1656
* @internal
1657
1657
*
1658
- * @param array<int, mixed>|array<string, mixed> $params
1658
+ * @param list< mixed>|array<string, mixed> $params
1659
1659
* @param array<int, int|string|Type|null>|array<string, int|string|Type|null> $types
1660
1660
*/
1661
1661
final public function convertExceptionDuringQuery (
0 commit comments