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
when you create a form by doing :
createForm(new foo(), $object);
with a "bar" form field defined in your foo FormType, the Symfony Form component is looking if one of the method getBar() , isBar() or hasBar() exists. If neither of this methods exists, an exception is thrown. This is a problem for object that use magical methods to simulate getBar() method for exemple.