Skip to content

Commit 6d78c43

Browse files
committed
PHPC-448: Fix arginfo for ReadConcern constructor
The first argument is not required.
1 parent d771285 commit 6d78c43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MongoDB/ReadConcern.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ PHP_METHOD(ReadConcern, getLevel)
107107
*/
108108
/* {{{ MongoDB\Driver\ReadConcern */
109109

110-
ZEND_BEGIN_ARG_INFO_EX(ai_ReadConcern___construct, 0, 0, 1)
110+
ZEND_BEGIN_ARG_INFO_EX(ai_ReadConcern___construct, 0, 0, 0)
111111
ZEND_ARG_INFO(0, level)
112112
ZEND_END_ARG_INFO();
113113

0 commit comments

Comments
 (0)