diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-14 12:00:03 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-14 23:19:21 +0100 |
commit | af56982a5ecd28291d18d2e091515ad25de1050e (patch) | |
tree | d035c514092d320ea86c34b0e670c72253603a41 /ext/pgsql | |
parent | 6ce70447ac1b83ffa64c98ddcab76f56dfb6695f (diff) | |
download | php-git-af56982a5ecd28291d18d2e091515ad25de1050e.tar.gz |
Generate class entries from stubs for oci8, odbc, openssl, pcntl, pdo, pgsql
Closes GH-6691
Diffstat (limited to 'ext/pgsql')
-rw-r--r-- | ext/pgsql/pgsql.stub.php | 2 | ||||
-rw-r--r-- | ext/pgsql/pgsql_arginfo.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ext/pgsql/pgsql.stub.php b/ext/pgsql/pgsql.stub.php index aff847bbc4..65edfd3329 100644 --- a/ext/pgsql/pgsql.stub.php +++ b/ext/pgsql/pgsql.stub.php @@ -1,6 +1,6 @@ <?php -/** @generate-function-entries */ +/** @generate-class-entries */ /** @return resource|false */ function pg_connect(string $connection_string, int $flags = 0) {} diff --git a/ext/pgsql/pgsql_arginfo.h b/ext/pgsql/pgsql_arginfo.h index 3d9a4f2d5d..d5ebdbf29e 100644 --- a/ext/pgsql/pgsql_arginfo.h +++ b/ext/pgsql/pgsql_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: de1718d3e6e66dfade25462b8461983b914120ed */ + * Stub hash: c88ced859b9bc6775690361d932c4cec14cb0c64 */ ZEND_BEGIN_ARG_INFO_EX(arginfo_pg_connect, 0, 0, 1) ZEND_ARG_TYPE_INFO(0, connection_string, IS_STRING, 0) @@ -652,3 +652,4 @@ static const zend_function_entry ext_functions[] = { ZEND_FE(pg_select, arginfo_pg_select) ZEND_FE_END }; + |