That's it. I created behavior and only some of its classes are added into head with use
due to my behavior.
E.g. behavior creates new table named acme
. Propel generator adds to my Foo
class (app/propel/AppPropelModel/AcmeBundle/om/BaseFoo.php) AcmeBehavior
and AcmeBehaviorQuery
, but not AcmeBehaviorPeer
.
I don't want to mess with full class name in behaviour-building class AcmeBehaviorObjectBuilderModifier.php
How could I make Propel add use AppPropelModel\HornsAndHooves\AcmeBundle\AcmeBehaviorPeer
to the destination class file as well?