-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add handling for compound types. #45
base: master
Are you sure you want to change the base?
Conversation
function veryComplex( | ||
array | ||
|(ArrayAccess&Traversable) | ||
|(Traversable&Countable) $input): ArrayAccess&Traversable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
|(Traversable&Countable) $input): ArrayAccess&Traversable | |
|(Traversable&Countable) $input | |
): ArrayAccess&Traversable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm. Not sure here. Does this context also force multilining the return part? If so, that should be said explicitly somewhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah doing this would split the argument list over multiple lines and would make "argument list is split across multiple lines" rules apply here. I get that this is different than actually splitting each argument onto their own lines but I don't think that distinction matters at all when it comes to readability and consistency.
Co-authored-by: Tim Düsterhus <[email protected]>
that all compound types be structured as an ORed (unioned) series of ANDs (intersections), and that each set of | ||
intersections be encased with parentheses. | ||
|
||
The union symbol `|` and intersection symbol `&` MUST NOT have a leading or trailing space. The parentheses MUST NOT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While I personally agree that there should be no spaces around the "symbols", this appears to be inconsistent with catch()
which has spaces around in the example:
Line 967 in b49fd56
} catch (OtherThrowableType | AnotherThrowableType $e) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That should be unified one way or another 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs:
- Consistency with
catch()
or an argument for not being consistent - Consistency with mutliline declaration requirements
I think the catch consistency question is a big one so I've opened a vote in discord for the WG to decide the way to move forward. |
A while back, I put out a Mastodon poll on this. Not exactly scientific, but probably the best we've got. https://phpc.social/@Crell/112496711448592596 That poll at least comes out 60/40 in favor of no-space. (Some interesting comments either way in the replies.) Symfony, doesn't make an explicit stance, but their examples also show no-space (link courtesy Ben Ramsey): https://symfony.com/doc/current/contributing/code/standards.html And the default configuration for php-cs-fixer also defaults to no-space: https://cs.symfony.com/doc/rules/whitespace/types_spaces.html#rule-sets Laravel doesn't say explicitly either, but its examples have no-space in compound types in the docblock: https://laravel.com/docs/11.x/contributions#coding-style Based on that, I am strongly leaning toward requiring no-space for compound types, as the PR currently does. And then probably changing union-catch to match. WG members (only): Yay 👍 or nay 👎, based on the above? |
I should note that the latter is surely causing the former, since Symfony uses PHP-CS-Fixer for its code (it even has a dedicated preset). |
No-space is used in Yii as well. |
There's likely to be discussion on this, but this PR gets us started. Discuss.