summaryrefslogtreecommitdiff
path: root/ext/sqlite3
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2021-01-01 23:43:53 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2021-01-04 12:13:06 +0100
commitabe23bd9a387fca51ac424aaf10fc9e7465c2921 (patch)
tree701b93c16d05335b7a25196c7c8b19075f7f8f71 /ext/sqlite3
parent6e90c7550759508b394cb15f34699a12ffa61318 (diff)
downloadphp-git-abe23bd9a387fca51ac424aaf10fc9e7465c2921.tar.gz
SQLite3::query() cannot return null
Diffstat (limited to 'ext/sqlite3')
-rw-r--r--ext/sqlite3/sqlite3.stub.php2
-rw-r--r--ext/sqlite3/sqlite3_arginfo.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/sqlite3/sqlite3.stub.php b/ext/sqlite3/sqlite3.stub.php
index ef05ab6a80..95bfb312d8 100644
--- a/ext/sqlite3/sqlite3.stub.php
+++ b/ext/sqlite3/sqlite3.stub.php
@@ -53,7 +53,7 @@ class SQLite3
/** @return bool */
public function exec(string $query) {}
- /** @return SQLite3Result|false|null */
+ /** @return SQLite3Result|false */
public function query(string $query) {}
/** @return mixed */
diff --git a/ext/sqlite3/sqlite3_arginfo.h b/ext/sqlite3/sqlite3_arginfo.h
index 9cb142d7c6..39e026c52d 100644
--- a/ext/sqlite3/sqlite3_arginfo.h
+++ b/ext/sqlite3/sqlite3_arginfo.h
@@ -1,5 +1,5 @@
/* This is a generated file, edit the .stub.php file instead.
- * Stub hash: 20d9cd75afa2a9b9d4eb6c8019e7c47d34778df4 */
+ * Stub hash: 61a684b6c221a15538a5f8cc32bc4e7d4cf3c8fd */
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_SQLite3___construct, 0, 0, 1)
ZEND_ARG_TYPE_INFO(0, filename, IS_STRING, 0)