blob: eafd3c0c4850ac4f1902bb0c3cfcef8e4f2cddff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/** @generate-function-entries */
// 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) {}
/** @return bool */
public function sqliteCreateAggregate(string $function_name, callable $step_func, callable $finalize_func, int $num_args = -1) {}
/** @return bool */
public function sqliteCreateCollation(string $name, callable $callback) {}
}
|