-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Form] Form view parent #19491
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
[Form] Form view parent #19491
Conversation
Q | A |
---|---|
Branch? | "master" for new features |
Bug fix? | no |
New feature? | yes |
BC breaks? | no |
Deprecations? | no |
Tests pass? | yes |
Fixed tickets | #18882 |
License | MIT |
Doc PR | reference to the documentation PR, if any |
*/ | ||
public function hasParent() | ||
{ | ||
return (null !== $this->parent) ? true : false; |
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.
The ternary is useless, just return null !== $this->parent
The cs fixes in this PR are either needless or out of the scope here. Status: Needs Work |
Ok this in fact don't change anything to the current testing, sorry for the confusion. |