We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73596df commit 48f694dCopy full SHA for 48f694d
1 file changed
src/Result.php
@@ -8,6 +8,14 @@
8
*/
9
interface Result extends \Traversable
10
{
11
+ /**
12
+ * Returns the next row in the result set or null if no rows remain. This method may be used as an alternative
13
+ * to foreach iteration to obtain single rows from the result.
14
+ *
15
+ * @return array<string, TFieldValue>|null
16
+ */
17
+ public function fetchRow(): ?array;
18
+
19
/**
20
* Resolves with a new instance of Result if another result is available after this result. Resolves with null if
21
* no further results are available.
0 commit comments