@@ -28,9 +28,9 @@ public function columnCount();
28
28
/**
29
29
* Sets the fetch mode to use while iterating this statement.
30
30
*
31
- * @param int $fetchMode Controls how the next row will be returned to the caller.
32
- * The value must be one of the {@link \Doctrine\DBAL\FetchMode} constants.
33
- * @param array $args Optional mode-specific arguments (see {@link self::fetchAll()}).
31
+ * @param int $fetchMode Controls how the next row will be returned to the caller.
32
+ * The value must be one of the {@link \Doctrine\DBAL\FetchMode} constants.
33
+ * @param mixed[] ... $args Optional mode-specific arguments (see {@link self::fetchAll()}).
34
34
*
35
35
* @return bool
36
36
*/
@@ -42,7 +42,7 @@ public function setFetchMode($fetchMode, ...$args);
42
42
* @param int|null $fetchMode Controls how the next row will be returned to the caller.
43
43
* The value must be one of the {@link \Doctrine\DBAL\FetchMode} constants,
44
44
* defaulting to {@link \Doctrine\DBAL\FetchMode::MIXED}.
45
- * @param array $args Optional mode-specific arguments (see {@link self::fetchAll()}).
45
+ * @param mixed[] ... $args Optional mode-specific arguments (see {@link self::fetchAll()}).
46
46
*
47
47
* @return mixed The return value of this method on success depends on the fetch mode. In all cases, FALSE is
48
48
* returned on failure.
@@ -55,7 +55,7 @@ public function fetch($fetchMode = null, ...$args);
55
55
* @param int|null $fetchMode Controls how the next row will be returned to the caller.
56
56
* The value must be one of the {@link \Doctrine\DBAL\FetchMode} constants,
57
57
* defaulting to {@link \Doctrine\DBAL\FetchMode::MIXED}.
58
- * @param array $args Optional mode-specific arguments. Supported modes:
58
+ * @param mixed[] ... $args Optional mode-specific arguments. Supported modes:
59
59
* * {@link \Doctrine\DBAL\FetchMode::COLUMN}
60
60
* 1. The 0-indexed column to be returned.
61
61
* * {@link \Doctrine\DBAL\FetchMode::CUSTOM_OBJECT}
0 commit comments