diff options
| author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-10-09 23:02:14 +0200 |
|---|---|---|
| committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-10-12 18:05:35 +0200 |
| commit | eef994d6211ae96b108caccd77669336f4ec46e8 (patch) | |
| tree | 4d40e2c25364e8698d10fd9396098ef6976af491 /ext/pdo_sqlite/sqlite_driver.stub.php | |
| parent | 6edad1716da48ac4765089d8603a4178b852afd8 (diff) | |
| download | php-git-eef994d6211ae96b108caccd77669336f4ec46e8.tar.gz | |
Improve parameter names in ext/pdo_sqlite
Closes GH-6310
Diffstat (limited to 'ext/pdo_sqlite/sqlite_driver.stub.php')
| -rw-r--r-- | ext/pdo_sqlite/sqlite_driver.stub.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_sqlite/sqlite_driver.stub.php b/ext/pdo_sqlite/sqlite_driver.stub.php index eafd3c0c48..fc827cd381 100644 --- a/ext/pdo_sqlite/sqlite_driver.stub.php +++ b/ext/pdo_sqlite/sqlite_driver.stub.php @@ -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) {} |
