Skip to content

Commit fa908bf

Browse files
committed
BinvValue uses $value
1 parent 596f0ab commit fa908bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ext/sqlite3/sqlite3.stub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private function __construct(SQLite3 $sqlite3, string $sql) {}
8989
public function bindParam(string|int $param, mixed &$bind_var, int $type = SQLITE3_TEXT) {}
9090

9191
/** @return bool */
92-
public function bindValue(string|int $param, mixed $bind_var, int $type = SQLITE3_TEXT) {}
92+
public function bindValue(string|int $param, mixed $value, int $type = SQLITE3_TEXT) {}
9393

9494
/** @return bool */
9595
public function clear() {}

ext/sqlite3/sqlite3_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: 7bd73f34dffacbd6c1379566f3e57fe27199e0aa */
2+
* Stub hash: a0f5c79fb71cffc29c8e3a42c0e887a4a144363d */
33

44
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_SQLite3___construct, 0, 0, 1)
55
ZEND_ARG_TYPE_INFO(0, filename, IS_STRING, 0)
@@ -111,7 +111,7 @@ ZEND_END_ARG_INFO()
111111

112112
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_SQLite3Stmt_bindValue, 0, 0, 2)
113113
ZEND_ARG_TYPE_MASK(0, param, MAY_BE_STRING|MAY_BE_LONG, NULL)
114-
ZEND_ARG_TYPE_INFO(0, bind_var, IS_MIXED, 0)
114+
ZEND_ARG_TYPE_INFO(0, value, IS_MIXED, 0)
115115
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, type, IS_LONG, 0, "SQLITE3_TEXT")
116116
ZEND_END_ARG_INFO()
117117

0 commit comments

Comments
 (0)