1 | <?php |
||
27 | final class CommandHandlerProviderPass extends HandlerProviderPass |
||
28 | { |
||
29 | public const DEFAULT_SERVICE_ID = CommandHandlerProvider::class; |
||
30 | public const DEFAULT_HANDLER_TAG = 'command_dispatcher.handler'; |
||
31 | public const DEFAULT_MESSAGE_PROPERTY = 'command'; |
||
32 | public const DEFAULT_PROVIDER_CLASS = CommandHandlerProvider::class; |
||
33 | |||
34 | public function __construct( |
||
42 | } |
||
43 |