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
Currently some processes are unnecessarily complicated. We're getting a admingenerator.generator.doctrine service, which is injected with some stuff.. only to pass it to other classes, which are instantiated with new Classname.
Instead, we should create new (non public) services for these classes and inject the right dependencies directly where they are needed (eg. into builders).
This should clean up much of the duplicated code and simplify the bundle internals.
The text was updated successfully, but these errors were encountered:
Currently some processes are unnecessarily complicated. We're getting a
admingenerator.generator.doctrine
service, which is injected with some stuff.. only to pass it to other classes, which are instantiated withnew Classname
.Instead, we should create new (non public) services for these classes and inject the right dependencies directly where they are needed (eg. into builders).
This should clean up much of the duplicated code and simplify the bundle internals.
The text was updated successfully, but these errors were encountered: