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