You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Multiple @tags on the same physical PHPDoc line (@param int $x @return int, or combined psalm/phpstan annotations like @template U @extends Foo<U>) are now parsed as separate tags instead of one tag whose body swallows the rest. The split only applies to a line that itself starts with @; a tag's continuation/description lines are still treated as prose, so text like Contact user @example for details. is not mistaken for a new tag (phpdoc-parser).