fixed bug #74413 wrong reflection on SQLite3::enableExceptions

This commit is contained in:
Joe Watkins 2017-04-11 12:13:21 +01:00
parent eb03f16442
commit b74b325aea
No known key found for this signature in database
GPG key ID: F9BA0ADA31CBD89E
2 changed files with 5 additions and 1 deletions

4
NEWS
View file

@ -33,6 +33,10 @@ PHP NEWS
. Fixed bug #74409 (Reflection information for ini_get_all() is incomplete).
(Sebastian Bergmann)
- SQLite3:
. Fixed bug #74413 (incorrect reflection for SQLite3::enableExceptions).
(krakjoe)
13 Apr 2017 PHP 7.0.18
- Core:

View file

@ -1930,7 +1930,7 @@ ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_openblob, 0, 0, 3)
ZEND_ARG_INFO(0, dbname)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_enableexceptions, 0, 0, 1)
ZEND_BEGIN_ARG_INFO_EX(argingo_sqlite3_enableexceptions, 0, 0, 0)
ZEND_ARG_INFO(0, enableExceptions)
ZEND_END_ARG_INFO()