File tree 1 file changed +7
-0
lines changed
src/Symfony/Bundle/FrameworkBundle/Resources/config
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change 47
47
use Symfony \Component \Messenger \Command \SetupTransportsCommand ;
48
48
use Symfony \Component \Messenger \Command \StopWorkersCommand ;
49
49
use Symfony \Component \Translation \Command \XliffLintCommand ;
50
+ use Symfony \Component \Validator \Command \DebugCommand as ValidatorDebugCommand ;
50
51
51
52
return static function (ContainerConfigurator $ container ) {
52
53
$ container ->services ()
225
226
])
226
227
->tag ('console.command ' , ['command ' => 'translation:update ' ])
227
228
229
+ ->set ('console.command.validator_debug ' , ValidatorDebugCommand::class)
230
+ ->args ([
231
+ service ('debug.validator ' ),
232
+ ])
233
+ ->tag ('console.command ' , ['command ' => 'debug:validator ' ])
234
+
228
235
->set ('console.command.workflow_dump ' , WorkflowDumpCommand::class)
229
236
->tag ('console.command ' , ['command ' => 'workflow:dump ' ])
230
237
You can’t perform that action at this time.
0 commit comments