Skip to content

Commit e64f0c9

Browse files
committed
Update stubs
1 parent bbc55ac commit e64f0c9

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

stubs/ext/pdo_sqlite/Pdo/Sqlite.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,15 @@ public function setAuthorizer(?callable $callback): void
5555
/** @cvalue PDO_SQLITE_ATTR_EXPLAIN_STATEMENT */
5656
#[\Since('8.5')]
5757
public const int ATTR_EXPLAIN_STATEMENT = UNKNOWN;
58+
/** @cvalue PDO_SQLITE_ATTR_TRANSACTION_MODE */
59+
#[\Since('8.5')]
60+
public const int ATTR_TRANSACTION_MODE = UNKNOWN;
61+
#[\Since('8.5')]
62+
public const int TRANSACTION_MODE_DEFERRED = 0;
63+
#[\Since('8.5')]
64+
public const int TRANSACTION_MODE_IMMEDIATE = 1;
65+
#[\Since('8.5')]
66+
public const int TRANSACTION_MODE_EXCLUSIVE = 2;
5867
#if SQLITE_VERSION_NUMBER >= 3043000
5968
#[\Since('8.5')]
6069
public const int EXPLAIN_MODE_PREPARED = 0;

0 commit comments

Comments
 (0)