@@ -12,7 +12,7 @@ interface Result
12
12
/**
13
13
* Returns the next row of the result as a numeric array or FALSE if there are no more rows.
14
14
*
15
- * @return non-empty-list<scalar|null>|false
15
+ * @return non-empty-list<scalar|resource| null>|false
16
16
*
17
17
* @throws Exception
18
18
*/
@@ -21,7 +21,7 @@ public function fetchNumeric(): array|false;
21
21
/**
22
22
* Returns the next row of the result as an associative array or FALSE if there are no more rows.
23
23
*
24
- * @return non-empty-array<string,scalar|null>|false
24
+ * @return non-empty-array<string,scalar|resource| null>|false
25
25
*
26
26
* @throws Exception
27
27
*/
@@ -30,7 +30,7 @@ public function fetchAssociative(): array|false;
30
30
/**
31
31
* Returns the first value of the next row of the result or FALSE if there are no more rows.
32
32
*
33
- * @return scalar|null|false
33
+ * @return scalar|resource| null|false
34
34
*
35
35
* @throws Exception
36
36
*/
@@ -48,7 +48,7 @@ public function fetchAllNumeric(): array;
48
48
/**
49
49
* Returns an array containing all of the result rows represented as associative arrays.
50
50
*
51
- * @return list<non-empty-array<string,scalar|null>>
51
+ * @return list<non-empty-array<string,scalar|resource| null>>
52
52
*
53
53
* @throws Exception
54
54
*/
@@ -57,7 +57,7 @@ public function fetchAllAssociative(): array;
57
57
/**
58
58
* Returns an array containing the values of the first column of the result.
59
59
*
60
- * @return list<scalar|null>
60
+ * @return list<scalar|resource| null>
61
61
*
62
62
* @throws Exception
63
63
*/
0 commit comments