@@ -28,9 +28,9 @@ public function columnCount();
2828 /**
2929 * Sets the fetch mode to use while iterating this statement.
3030 *
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()}).
3434 *
3535 * @return bool
3636 */
@@ -42,7 +42,7 @@ public function setFetchMode($fetchMode, ...$args);
4242 * @param int|null $fetchMode Controls how the next row will be returned to the caller.
4343 * The value must be one of the {@link \Doctrine\DBAL\FetchMode} constants,
4444 * 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()}).
4646 *
4747 * @return mixed The return value of this method on success depends on the fetch mode. In all cases, FALSE is
4848 * returned on failure.
@@ -55,7 +55,7 @@ public function fetch($fetchMode = null, ...$args);
5555 * @param int|null $fetchMode Controls how the next row will be returned to the caller.
5656 * The value must be one of the {@link \Doctrine\DBAL\FetchMode} constants,
5757 * 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:
5959 * * {@link \Doctrine\DBAL\FetchMode::COLUMN}
6060 * 1. The 0-indexed column to be returned.
6161 * * {@link \Doctrine\DBAL\FetchMode::CUSTOM_OBJECT}
0 commit comments