1<?php
2
3/** @generate-function-entries */
4
5// These are extension methods for PDO. This is not a real class.
6class PDO_SQLite_Ext {
7    /** @return bool */
8    public function sqliteCreateFunction(string $name, callable $callback, int $numArgs = -1, int $flags = 0) {}
9
10    /** @return bool */
11    public function sqliteCreateAggregate(string $name, callable $step, callable $finalize, int $numArgs = -1) {}
12
13    /** @return bool */
14    public function sqliteCreateCollation(string $name, callable $callback) {}
15}
16