// 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) {}
/* 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)