[phpstorm-stubs] move SQLITE3_DETERMINISTIC to correct stub

This commit is contained in:
Ivan Fedorov 2022-11-03 21:45:55 +01:00
parent 62a9fc720b
commit 71aa908299
2 changed files with 8 additions and 8 deletions

View File

@ -1399,11 +1399,3 @@ define('SQLITE_ROW', 100);
* @link https://php.net/manual/en/sqlite.constants.php
*/
define('SQLITE_DONE', 101);
/**
* Specifies that a function created with {@see SQLite3::createFunction()} is deterministic,
* i.e. it always returns the same result given the same inputs within a single SQL statement.
* @since 7.1.4
* @link https://php.net/manual/en/sqlite.constants.php
*/
define('SQLITE3_DETERMINISTIC', 2048);

View File

@ -682,4 +682,12 @@ define('SQLITE3_OPEN_READWRITE', 2);
*/
define('SQLITE3_OPEN_CREATE', 4);
/**
* Specifies that a function created with {@see SQLite3::createFunction()} is deterministic,
* i.e. it always returns the same result given the same inputs within a single SQL statement.
* @since 7.1.4
* @link https://php.net/manual/en/sqlite.constants.php
*/
define('SQLITE3_DETERMINISTIC', 2048);
// End of sqlite3 v.0.7-dev