]> granicus.if.org Git - php/commitdiff
Improve parameter names in ext/pdo_sqlite
authorMáté Kocsis <kocsismate@woohoolabs.com>
Fri, 9 Oct 2020 21:02:14 +0000 (23:02 +0200)
committerMáté Kocsis <kocsismate@woohoolabs.com>
Mon, 12 Oct 2020 16:05:35 +0000 (18:05 +0200)
Closes GH-6310

ext/pdo_sqlite/sqlite_driver.stub.php
ext/pdo_sqlite/sqlite_driver_arginfo.h
ext/pdo_sqlite/tests/pdo_sqlite_createaggregate_002.phpt

index eafd3c0c4850ac4f1902bb0c3cfcef8e4f2cddff..fc827cd381c1f85c5f35ce4a2e17df427103e9ff 100644 (file)
@@ -5,10 +5,10 @@
 // These are extension methods for PDO. This is not a real class.
 class PDO_SQLite_Ext {
     /** @return bool */
-    public function sqliteCreateFunction(string $function_name, callable $callback, int $num_args = -1, int $flags = 0) {}
+    public function sqliteCreateFunction(string $name, callable $callback, int $numArgs = -1, int $flags = 0) {}
 
     /** @return bool */
-    public function sqliteCreateAggregate(string $function_name, callable $step_func, callable $finalize_func, int $num_args = -1) {}
+    public function sqliteCreateAggregate(string $name, callable $step, callable $finalize, int $numArgs = -1) {}
 
     /** @return bool */
     public function sqliteCreateCollation(string $name, callable $callback) {}
index ad3df39bac96100d8c3c8685b8104eb594b88c1e..370f3d131594011069ad294b646631c664eb90c6 100644 (file)
@@ -1,18 +1,18 @@
 /* This is a generated file, edit the .stub.php file instead.
- * Stub hash: e367675f85371fb06484e39dd6ccb3433766ffb8 */
+ * Stub hash: 49737f1a08f0b1b66e326b7d06e316105202d27d */
 
 ZEND_BEGIN_ARG_INFO_EX(arginfo_class_PDO_SQLite_Ext_sqliteCreateFunction, 0, 0, 2)
-       ZEND_ARG_TYPE_INFO(0, function_name, IS_STRING, 0)
+       ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
        ZEND_ARG_TYPE_INFO(0, callback, IS_CALLABLE, 0)
-       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, num_args, IS_LONG, 0, "-1")
+       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, numArgs, IS_LONG, 0, "-1")
        ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flags, IS_LONG, 0, "0")
 ZEND_END_ARG_INFO()
 
 ZEND_BEGIN_ARG_INFO_EX(arginfo_class_PDO_SQLite_Ext_sqliteCreateAggregate, 0, 0, 3)
-       ZEND_ARG_TYPE_INFO(0, function_name, IS_STRING, 0)
-       ZEND_ARG_TYPE_INFO(0, step_func, IS_CALLABLE, 0)
-       ZEND_ARG_TYPE_INFO(0, finalize_func, IS_CALLABLE, 0)
-       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, num_args, IS_LONG, 0, "-1")
+       ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
+       ZEND_ARG_TYPE_INFO(0, step, IS_CALLABLE, 0)
+       ZEND_ARG_TYPE_INFO(0, finalize, IS_CALLABLE, 0)
+       ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, numArgs, IS_LONG, 0, "-1")
 ZEND_END_ARG_INFO()
 
 ZEND_BEGIN_ARG_INFO_EX(arginfo_class_PDO_SQLite_Ext_sqliteCreateCollation, 0, 0, 2)
index 5660288af3b467fb535cf917e920f4a3555b0d25..a906e8e52d37c0900792d28a9b934edd003713d1 100644 (file)
@@ -20,5 +20,5 @@ try {
 
 ?>
 --EXPECT--
-PDO::sqliteCreateAggregate(): Argument #2 ($step_func) must be a valid callback, function "a" not found or invalid function name
-PDO::sqliteCreateAggregate(): Argument #3 ($finalize_func) must be a valid callback, function "" not found or invalid function name
+PDO::sqliteCreateAggregate(): Argument #2 ($step) must be a valid callback, function "a" not found or invalid function name
+PDO::sqliteCreateAggregate(): Argument #3 ($finalize) must be a valid callback, function "" not found or invalid function name