= 3043000 public const int EXPLAIN_MODE_PREPARED = 0; public const int EXPLAIN_MODE_EXPLAIN = 1; public const int EXPLAIN_MODE_EXPLAIN_QUERY_PLAN = 2; public function explain(): int {} public function setExplain(int $mode): bool {} #endif } /** @not-serializable */ class SQLite3Result { private function __construct() {} /** @tentative-return-type */ public function numColumns(): int {} /** @tentative-return-type */ public function columnName(int $column): string|false {} /** @tentative-return-type */ public function columnType(int $column): int|false {} /** @tentative-return-type */ public function fetchArray(int $mode = SQLITE3_BOTH): array|false {} public function fetchAll(int $mode = SQLITE3_BOTH): array|false {} /** @tentative-return-type */ public function reset(): bool {} /** @tentative-return-type */ public function finalize(): true {} }