-
Notifications
You must be signed in to change notification settings - Fork 93
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
[BUGFIX] Fix missing “null” annotation for parameter $sectionName #813
Conversation
Can you explain in more detail why this change is necessary? Currently the only call to this method in Fluid itself is in the Fluid/src/ViewHelpers/RenderViewHelper.php Line 164 in 64f4e46
|
Because, for example, I create an instance of |
Thanks for the explanation, makes sense. And So all in all 👍 |
LGTM, can be merged once #814 is merged and the branch has been rebased. |
Can you also adjust your commit message to use one of the prefixes described here: and a shorter title with an optional longer description if necessary. |
Can you fix the CGL issue in your changes? |
Just did some CGL changes, nothing substantial, so I'm merging without additional review. |
This change breaks API as the signature of |
@kitsunet Ugh, sorry about that. Will take a look at it tomorrow! You're talking about https://github.com/neos/fluidadaptor, right? |
In this case https://github.com/neos/form/blob/master/Classes/Core/Renderer/FluidFormRenderer.php#L203 |
Avoid fatal error due to changes in fluid. See TYPO3/Fluid#813
So neos/form adapted its implementation. There is nothing more to do for us, here, right? |
Nope, all good :) |
Correct $sectionName's annotation that this can be null. Add missing default values to method parameters.