@@ -311,8 +311,8 @@ public function __construct(string $filename, int $flags = SQLITE3_OPEN_READWRIT
311
311
/** @tentative-return-type */
312
312
public function open (string $ filename , int $ flags = SQLITE3_OPEN_READWRITE | SQLITE3_OPEN_CREATE , string $ encryptionKey = "" ): void {}
313
313
314
- /** @return bool */
315
- public function close () {} // TODO make return type void
314
+ /** @tentative- return-type */
315
+ public function close (): void {}
316
316
317
317
/** @tentative-return-type */
318
318
public static function version (): array {}
@@ -397,7 +397,7 @@ public function bindValue(string|int $param, mixed $value, int $type = SQLITE3_T
397
397
public function clear (): bool {}
398
398
399
399
/** @tentative-return-type */
400
- public function close (): bool {}
400
+ public function close (): void {}
401
401
402
402
/** @tentative-return-type */
403
403
public function execute (): SQLite3Result |false {}
@@ -435,6 +435,6 @@ public function fetchArray(int $mode = SQLITE3_BOTH): array|false {}
435
435
/** @tentative-return-type */
436
436
public function reset (): bool {}
437
437
438
- /** @return bool */
439
- public function finalize () {} // TODO make return type void
438
+ /** @tentative- return-type */
439
+ public function finalize (): void {}
440
440
}
0 commit comments