mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 05:41:20 +01:00
callmap updated as mysqli __construct()/connect() return bool in php 8.1
This commit is contained in:
parent
52265d926f
commit
bcc3023ac9
@ -8395,7 +8395,7 @@ return [
|
||||
'mysqli::character_set_name' => ['string'],
|
||||
'mysqli::close' => ['bool'],
|
||||
'mysqli::commit' => ['bool', 'flags='=>'int', 'name='=>'string'],
|
||||
'mysqli::connect' => ['null|false', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'],
|
||||
'mysqli::connect' => ['bool', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'],
|
||||
'mysqli::debug' => ['bool', 'options'=>'string'],
|
||||
'mysqli::disable_reads_from_master' => ['bool'],
|
||||
'mysqli::dump_debug_info' => ['bool'],
|
||||
|
@ -627,6 +627,10 @@ return [
|
||||
'old' => ['bool', 'ldap'=>'resource', 'callback'=>'string'],
|
||||
'new' => ['bool', 'ldap'=>'LDAP\Connection', 'callback'=>'string'],
|
||||
],
|
||||
'mysqli::connect' => [
|
||||
'old' => ['null|false', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'],
|
||||
'new' => ['bool', 'hostname='=>'string|null', 'username='=>'string|null', 'password='=>'string|null', 'database='=>'string|null', 'port='=>'int|null', 'socket='=>'string|null'],
|
||||
],
|
||||
'mysqli_execute' => [
|
||||
'old' => ['bool', 'statement' => 'mysqli_stmt'],
|
||||
'new' => ['bool', 'statement' => 'mysqli_stmt', 'params=' => 'list<mixed>|null'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user