I think I found a bug.
I have an array type in the schema : <column name="roles" type="array" required="false" />
So I have an exception : Error: Call to a member function getType() on boolean that occurs in PropelORMFieldGuesser.
It's because in PropelORMFieldGuesser::getOptions() the parameter $type is set to Symfony\Component\Form\Extension\Core\Type\CollectionType. And that's ok (see : here )
So I added at the beginning of the function getOptions() :
Hi,
I think I found a bug. I have an array type in the schema :
<column name="roles" type="array" required="false" />
So I have an exception :Error: Call to a member function getType() on boolean
that occurs in PropelORMFieldGuesser. It's because in PropelORMFieldGuesser::getOptions() the parameter $type is set to Symfony\Component\Form\Extension\Core\Type\CollectionType. And that's ok (see : here )So I added at the beginning of the function getOptions() :
_EDIT : _
Another solution is : At line 328 of PropelORMFieldGuesser :