mirror of
https://github.com/danog/psalm.git
synced 2025-01-22 05:41:20 +01:00
Ensure trait_exists()
always returns bool
Fixes #7478 As discussed in the upstream issue, `trait_exists()` always returns `bool`: while it can return `null` when the arguments passed to it do not match (either no arguments, or 3 or more arguments), we do not support that scenario, as that already doesn't respect the type signature of this function. We cut to the point: always make it `bool`, which is the scenario that works under healthy operational conditions. Ref: https://github.com/Roave/BetterReflection/pull/983#discussion_r790908170 Ref: https://psalm.dev/r/c41a43805d Ref: https://github.com/vimeo/psalm/issues/7478#issuecomment-1020330351 Ref: https://github.com/vimeo/psalm/issues/7478#issuecomment-1020337712 Ref: https://3v4l.org/XpHmh
This commit is contained in:
parent
dadb1f2167
commit
fabcda16b4
@ -14855,7 +14855,7 @@ return [
|
||||
'trader_wclprice' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array'],
|
||||
'trader_willr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'],
|
||||
'trader_wma' => ['array', 'real'=>'array', 'timePeriod='=>'int'],
|
||||
'trait_exists' => ['?bool', 'trait'=>'string', 'autoload='=>'bool'],
|
||||
'trait_exists' => ['bool', 'trait'=>'string', 'autoload='=>'bool'],
|
||||
'Transliterator::create' => ['?Transliterator', 'id'=>'string', 'direction='=>'int'],
|
||||
'Transliterator::createFromRules' => ['?Transliterator', 'rules'=>'string', 'direction='=>'int'],
|
||||
'Transliterator::createInverse' => ['Transliterator'],
|
||||
|
@ -15941,7 +15941,7 @@ return [
|
||||
'trader_wclprice' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array'],
|
||||
'trader_willr' => ['array', 'high'=>'array', 'low'=>'array', 'close'=>'array', 'timePeriod='=>'int'],
|
||||
'trader_wma' => ['array', 'real'=>'array', 'timePeriod='=>'int'],
|
||||
'trait_exists' => ['?bool', 'trait'=>'string', 'autoload='=>'bool'],
|
||||
'trait_exists' => ['bool', 'trait'=>'string', 'autoload='=>'bool'],
|
||||
'transliterator_create' => ['?Transliterator', 'id'=>'string', 'direction='=>'int'],
|
||||
'transliterator_create_from_rules' => ['?Transliterator', 'rules'=>'string', 'direction='=>'int'],
|
||||
'transliterator_create_inverse' => ['Transliterator', 'transliterator'=>'Transliterator'],
|
||||
|
Loading…
x
Reference in New Issue
Block a user