PHP TypeLang Help

@psalm-ignore-nullable-return

The @psalm-ignore-nullable-return tag tells Psalm to ignore a possible null value in the return type. It is defined by the static analyzer Psalm.

"@psalm-ignore-nullable-return" [ <Description> ]

Parsing a @psalm-ignore-nullable-return tag produces a PsalmIgnoreNullableReturnTag instance. Being a pure marker, it adds nothing beyond the $name and optional $description every Tag already carries.

final class PsalmIgnoreNullableReturnTag extends FlagTag {}
08 July 2026