[phpstorm-stubs] deprecate dba_fetch with 3 parameters since 8.3

https://wiki.php.net/rfc/deprecate_functions_with_overloaded_signatures
This commit is contained in:
Ivan Fedorov 2023-11-01 19:52:29 +01:00
parent 1720f96770
commit 99d8bcab93
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
<?php
// Start of dba v.
use JetBrains\PhpStorm\Deprecated;
use JetBrains\PhpStorm\Internal\LanguageLevelTypeAware;
use JetBrains\PhpStorm\Internal\PhpStormStubsElementAvailable;
@ -238,6 +239,7 @@ function dba_fetch($key, $handle): string|false {}
* @return string|false the associated string if the key/data pair is found, <b>FALSE</b>
* otherwise.
*/
#[Deprecated(since: 8.3)]
function dba_fetch($key, $skip, $dba): string|false {}
/**