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
new items in collection are not hydrated to dataClass but they are as ARRAY's
it means that after form bind i'll get :
class Foo {
private items ->> PersistedColleaction{
col = ArrayCollection {
[0] = FooClass() // already in collection
[1] = array('foo':'faa', ... ) // new items added to form are not hydrated back to proper class but they are arrays
}
}
}