Skip to content

Commit

Permalink
PCBC-1009: do not use IS_RESOURCE in function signatures
Browse files Browse the repository at this point in the history
Fixes #180
  • Loading branch information
avsej committed Oct 2, 2024
1 parent 2e3f0ed commit b490cd4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/php_couchbase.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -3952,7 +3952,7 @@ ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(ai_CouchbaseExtension_createDocumentScanResult,
0,
0,
IS_RESOURCE,
IS_MIXED,
1)
ZEND_ARG_INFO(0, connection)
ZEND_ARG_TYPE_INFO(0, bucket, IS_STRING, 0)
Expand Down Expand Up @@ -4301,7 +4301,7 @@ ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(ai_CouchbaseExtension_createTransactions,
0,
0,
IS_RESOURCE,
IS_MIXED,
1)
ZEND_ARG_INFO(0, connection)
ZEND_ARG_TYPE_INFO(0, configuration, IS_ARRAY, 1)
Expand All @@ -4310,7 +4310,7 @@ ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(ai_CouchbaseExtension_createTransactionContext,
0,
0,
IS_RESOURCE,
IS_MIXED,
1)
ZEND_ARG_INFO(0, transactions)
ZEND_ARG_TYPE_INFO(0, configuration, IS_ARRAY, 1)
Expand Down

0 comments on commit b490cd4

Please sign in to comment.