PHP TypeLang Help

@phan-suppress-next-line

The @phan-suppress-next-line tag silences the listed issue types reported on the next line, mirroring @phan-suppress-current-line but targeting the line that follows.

"@phan-suppress-next-line" <IssueName> { "," <IssueName> } [ <Description> ]

Parsing a @phan-suppress-next-line tag produces a PhanSuppressNextLineTag instance, carrying the listed $issues alongside the $name and optional $description every Tag already provides.

final class PhanSuppressNextLineTag extends IssueListTag {}

Defined by Phan.

08 July 2026