This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
vimeo/psalm | require-dev | patch |
4.7.2 -> 4.7.3
|
v4.7.3
Psalm emits UnusedProperty
and PossiblyUnusedProperty
issues when properties are declared but never referenced. Previously Psalm would count a property assignment as a reference to a property, but this has now been fixed so a property is treated as unused unless it is explicitly read from (#5810). As before, UnusedProperty
is emitted for private properties, while PossiblyUnusedProperty
is emitted for public and protected properties.
ParamNameMismatch
strictnessWhen I originally implemented ParamNameMismatch
I ignored methods with only one param, thinking that people would not call methods with a single param using named arguments, but in retrospect this was a little too liberal. @VincentLanglet has restricted this appropriately (#5732)
scalar
and empty-scalar
should result in scalar
(#5696)never
types in more situations (#5777) — thanks @weirdan
@psalm-template
over @phpstan-template
(#5713) - thanks @weirdan
unpack
can return false
— thanks @robchett
array_splice
inference (#5738) — thanks @orklah
never
and empty
should result in never
(#5756)array_merge
inside a loop (#4910)opcache_*
functions are impure (#5761)class-string-map
usage (#5434)array_fill
(#5770) — thanks @olsavmic
mixed
param (#5763) — thanks @orklah
htmlspecialchars
and strlen
(#5785, #5793) — thanks @still-dreaming-1 and @orklah
nullref
inside __invoke
arguments (#5809)''|
at the start of a union type in docblocks (#5814) — thanks @orklah
mongodb
(#5813) — thanks @franmomu
>= 0
(#5815) — thanks @orklah
This MR has been generated by Renovate Bot.