sqlite_driver.stub.php 561 B

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