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
Expression "$form" on a separate line does not do anything. (Cleanup visitor #121)
False positive error "Form field with name "something" probably does not exist."
Add __compilerError with Form with name *** probably does not exists when form is not found - check what errors it will return, maybe the best would be to remove whole form from begin to end and replace it with error.
Check content of end() in form node visitor - check if formStack is there
private AddFieldsToFormInterface $addFieldsToForm;
...
$form = new Form();
$this->addFieldsToForm->addFields($form);
AddFieldsToFormInterface can have several implementations, we need to collect data from all of them
If some field is conditionally added, and it is checked in latte, there should be no error
The text was updated successfully, but these errors were encountered:
Follow up #77 and #95
The text was updated successfully, but these errors were encountered: