Skip to content

Commit 095218e

Browse files
committed
Change $column to $field where it's about the actual data
1 parent 3f08673 commit 095218e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ext/odbc/odbc.stub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function odbc_fetch_into($stmt, &$row, int $row_number = 0): int|false {}
5858
function odbc_fetch_row($stmt, ?int $row_number = null): bool {}
5959

6060
/** @param resource $stmt */
61-
function odbc_result($stmt, string|int $column): string|bool|null {}
61+
function odbc_result($stmt, string|int $field): string|bool|null {}
6262

6363
/** @param resource $stmt */
6464
function odbc_result_all($stmt, string $format = ""): int|false {}

ext/odbc/odbc_arginfo.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* This is a generated file, edit the .stub.php file instead.
2-
* Stub hash: 0487390208b5f8fe3c863e6ff888e652a75b118c */
2+
* Stub hash: 28ca96df8fa1bff9721447b40aef75909a96c291 */
33

44
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_odbc_close_all, 0, 0, IS_VOID, 0)
55
ZEND_END_ARG_INFO()
@@ -66,7 +66,7 @@ ZEND_END_ARG_INFO()
6666

6767
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_odbc_result, 0, 2, MAY_BE_STRING|MAY_BE_BOOL|MAY_BE_NULL)
6868
ZEND_ARG_INFO(0, stmt)
69-
ZEND_ARG_TYPE_MASK(0, column, MAY_BE_STRING|MAY_BE_LONG, NULL)
69+
ZEND_ARG_TYPE_MASK(0, field, MAY_BE_STRING|MAY_BE_LONG, NULL)
7070
ZEND_END_ARG_INFO()
7171

7272
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_odbc_result_all, 0, 1, MAY_BE_LONG|MAY_BE_FALSE)

0 commit comments

Comments
 (0)