Page MenuHomePhorge

Drop question mark suffix from optional PHPDoc @param types
ClosedPublic

Authored by aklapper on Aug 22 2024, 09:59.
Tags
None
Referenced Files
F3390525: D25797.1744468314.diff
Fri, Apr 11, 14:31
F3387690: D25797.1744440142.diff
Fri, Apr 11, 06:42
F3362177: D25797.1744068919.diff
Sun, Apr 6, 23:35
F3356701: D25797.1743890779.diff
Fri, Apr 4, 22:06
F3330407: D25797.1743488229.diff
Mon, Mar 31, 06:17
F3329707: D25797.1743479391.diff
Mon, Mar 31, 03:49
F3329059: D25797.1743468062.diff
Mon, Mar 31, 00:41
F3329053: D25797.1743468017.diff
Mon, Mar 31, 00:40

Details

Summary

The question mark in @param type? $foo Desc is a custom notation not consistently applied across the codebase and not necessarily obvious to the reader (because custom and not mentioned in https://github.com/php-fig/fig-standards/blob/master/proposed/phpdoc.md ).
Instead, explicitly state "optional" in the parameter description for clarity.

Closes T15925.

Test Plan

Run PHPStan, see no PHPDoc @param has invalid value (type? [...] style output anymore.

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

I confirm with my hand on my heart that I've consumed my eyes inspecting every single line to be absolutely sure that this PHPDoc probably has a better meaning and will not cause nuclear implosions.

Wojak depressed.png (473×635 px, 160 KB)

This revision is now accepted and ready to land.Sep 6 2024, 16:22

@valerio.bozzolan: Thank you! I know this is super boring work, but it allows PHPStan to show other type/class issues which are currently hidden due to PHPStan barking earlier about that non-standard question mark when parsing those lines. :-/