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 dc4c545 commit 5c52719Copy full SHA for 5c52719
src/Database/IRowContainer.php
@@ -22,6 +22,13 @@ interface IRowContainer extends \Traversable
22
*/
23
function fetch();
24
25
+ /**
26
+ * Fetches single field.
27
+ * @param int|string
28
+ * @return mixed
29
+ */
30
+ function fetchField($column = 0);
31
+
32
/**
33
* Fetches all rows as associative array.
34
* @param string|int column name used for an array key or NULL for numeric index
src/Database/ResultSet.php
@@ -274,9 +274,7 @@ public function fetch()
274
275
276
277
- * Fetches single field.
278
- * @param int
279
- * @return mixed
+ * @inheritDoc
280
281
public function fetchField($column = 0)
282
{
0 commit comments