@@ -24,45 +24,45 @@ public function __construct(\Phalcon\Db\AdapterInterface $connection, \PDOStatem
24
24
* Allows to executes the statement again. Some database systems don't support scrollable cursors,
25
25
* So, as cursors are forward only, we need to execute the cursor again to fetch rows from the begining
26
26
*
27
- * @return boolean
27
+ * @return boolean
28
28
*/
29
29
public function execute ();
30
30
31
31
/**
32
32
* Fetches an array/object of strings that corresponds to the fetched row, or FALSE if there are no more rows.
33
33
* This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode
34
34
*
35
- * @return mixed
35
+ * @return mixed
36
36
*/
37
37
public function fetch ();
38
38
39
39
/**
40
40
* Returns an array of strings that corresponds to the fetched row, or FALSE if there are no more rows.
41
41
* This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode
42
42
*
43
- * @return mixed
43
+ * @return mixed
44
44
*/
45
45
public function fetchArray ();
46
46
47
47
/**
48
48
* Returns an array of arrays containing all the records in the result
49
49
* This method is affected by the active fetch flag set using Phalcon\Db\Result\Pdo::setFetchMode
50
50
*
51
- * @return array
51
+ * @return array
52
52
*/
53
53
public function fetchAll ();
54
54
55
55
/**
56
56
* Gets number of rows returned by a resultset
57
57
*
58
- * @return int
58
+ * @return int
59
59
*/
60
60
public function numRows ();
61
61
62
62
/**
63
63
* Moves internal resultset cursor to another position letting us to fetch a certain row
64
64
*
65
- * @param int $number
65
+ * @param int $number
66
66
*/
67
67
public function dataSeek ($ number );
68
68
@@ -77,8 +77,7 @@ public function setFetchMode($fetchMode);
77
77
/**
78
78
* Gets the internal PDO result object
79
79
*
80
- * @return \PDOStatement
80
+ * @return \PDOStatement
81
81
*/
82
82
public function getInternalResult ();
83
-
84
83
}
0 commit comments