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 there is a ClassNameFormatter. This is useful when the ClassName is the command name, but if our CommandHandlerMiddleware uses a different CommandNameExtractor it isn't.
I propose adding an extra formatter CommandNameFormatter that accepts a CommandNameExtractor as a parameter. Other logic similar to the ClassNameFormatter.
The text was updated successfully, but these errors were encountered:
Can do, though would it be easier to create a custom implementation of the Formatter interface for your specific project? For Tactician2 (if I ever get time), I'm likely going to drop the ClassNameFormatter concept entirely and default to just get_class across the board, since I think FQCNs have become the de facto implementation for most projects?
Currently there is a ClassNameFormatter. This is useful when the ClassName is the command name, but if our CommandHandlerMiddleware uses a different CommandNameExtractor it isn't.
I propose adding an extra formatter
CommandNameFormatter
that accepts a CommandNameExtractor as a parameter. Other logic similar to the ClassNameFormatter.The text was updated successfully, but these errors were encountered: