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    /** @tentative-return-type */
8    public function sqliteCreateFunction(string $name, callable $callback, int $numArgs = -1, int $flags = 0): bool {}
9
10    /** @tentative-return-type */
11    public function sqliteCreateAggregate(string $name, callable $step, callable $finalize, int $numArgs = -1): bool {}
12
13    /** @tentative-return-type */
14    public function sqliteCreateCollation(string $name, callable $callback): bool {}
15}
16