Skip to content

Commit b74b325

Browse files
committed
fixed bug #74413 wrong reflection on SQLite3::enableExceptions
1 parent eb03f16 commit b74b325

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ PHP NEWS
3333
. Fixed bug #74409 (Reflection information for ini_get_all() is incomplete).
3434
(Sebastian Bergmann)
3535

36+
- SQLite3:
37+
. Fixed bug #74413 (incorrect reflection for SQLite3::enableExceptions).
38+
(krakjoe)
39+
3640
13 Apr 2017 PHP 7.0.18
3741

3842
- Core:

ext/sqlite3/sqlite3.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1930,7 +1930,7 @@ ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_openblob, 0, 0, 3)
19301930
ZEND_ARG_INFO(0, dbname)
19311931
ZEND_END_ARG_INFO()
19321932

1933-
ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_enableexceptions, 0, 0, 1)
1933+
ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_enableexceptions, 0, 0, 0)
19341934
ZEND_ARG_INFO(0, enableExceptions)
19351935
ZEND_END_ARG_INFO()
19361936

0 commit comments

Comments
 (0)