summaryrefslogtreecommitdiff
path: root/ext/odbc/odbc.stub.php
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-02-16 19:20:54 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2020-02-16 23:43:38 +0100
commitc31029f335ca1b453af799805c43c37e959ad555 (patch)
tree15f57cdb50525d2f05e0016c795a1ca7a72e17b9 /ext/odbc/odbc.stub.php
parent6ee6097688a8c64e0e0ba166d48b16a93bf107a2 (diff)
downloadphp-git-c31029f335ca1b453af799805c43c37e959ad555.tar.gz
Replace @param annotations with type declarations
Diffstat (limited to 'ext/odbc/odbc.stub.php')
-rw-r--r--ext/odbc/odbc.stub.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/odbc/odbc.stub.php b/ext/odbc/odbc.stub.php
index 9eafe46ae5..814b8fba71 100644
--- a/ext/odbc/odbc.stub.php
+++ b/ext/odbc/odbc.stub.php
@@ -53,9 +53,8 @@ function odbc_fetch_row($result_id, int $row_number = UNKNOWN): bool {}
/**
* @param resource $result_id
- * @param string|int $field
*/
-function odbc_result($result_id, $field): string|bool|null {}
+function odbc_result($result_id, string|int $field): string|bool|null {}
/** @param resource $result_id */
function odbc_result_all($result_id, string $format = ''): int|false {}