- Issue created by @pfrenssen
Currently CoreComposableResolver
is implemented as a basic class with static methods. This means the class is hardcoded and cannot be overridden in client projects without having to patch the module.
The class is also not following best practices. For example it doesn't use dependency injection, doesn't have an interface, and uses private methods which limit extensibility.
Try to override anything in CoreComposableResolver
, for example the way language fallbacks are handled.
This will be a B/C break for existing projects that are calling in to the CoreComposableResolver
class. We should decide on how to implement a B/C layer.
CoreComposableResolver
will become a service.
Active
1.0
Code