mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
Fix password_hash change between versions
This commit is contained in:
parent
13f182bf9f
commit
8edb117451
23
src/Psalm/Internal/CallMap_74_delta.php
Normal file
23
src/Psalm/Internal/CallMap_74_delta.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php // phpcs:ignoreFile
|
||||
|
||||
/**
|
||||
* This contains the information needed to convert the function signatures for php 7.4 to php 7.3 (and vice versa)
|
||||
*
|
||||
* This has two sections.
|
||||
* The 'new' section contains function/method names from FunctionSignatureMap (And alternates, if applicable) that do not exist in php7.3 or have different signatures in php 7.4.
|
||||
* If they were just updated, the function/method will be present in the 'added' signatures.
|
||||
* The 'old' signatures contains the signatures that are different in php 7.3.
|
||||
* Functions are expected to be removed only in major releases of php. (e.g. php 7.0 removed various functions that were deprecated in 5.6)
|
||||
*
|
||||
* @see FunctionSignatureMap.php
|
||||
*
|
||||
* @phan-file-suppress PhanPluginMixedKeyNoKey (read by Phan when analyzing this file)
|
||||
*/
|
||||
return [
|
||||
'new' => [
|
||||
'password_hash' => ['string|null', 'password'=>'string', 'algo'=>'int', 'options='=>'array'],
|
||||
],
|
||||
'old' => [
|
||||
'password_hash' => ['string|false', 'password'=>'string', 'algo'=>'int', 'options='=>'array'],
|
||||
]
|
||||
];
|
Loading…
Reference in New Issue
Block a user