File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 44
44
use Symfony \Component \Console \EventListener \ErrorListener ;
45
45
use Symfony \Component \Console \Messenger \RunCommandMessageHandler ;
46
46
use Symfony \Component \Dotenv \Command \DebugCommand as DotenvDebugCommand ;
47
+ use Symfony \Component \ErrorHandler \Command \ErrorDumpCommand ;
47
48
use Symfony \Component \Messenger \Command \ConsumeMessagesCommand ;
48
49
use Symfony \Component \Messenger \Command \DebugCommand as MessengerDebugCommand ;
49
50
use Symfony \Component \Messenger \Command \FailedMessagesRemoveCommand ;
59
60
use Symfony \Component \Translation \Command \TranslationPushCommand ;
60
61
use Symfony \Component \Translation \Command \XliffLintCommand ;
61
62
use Symfony \Component \Validator \Command \DebugCommand as ValidatorDebugCommand ;
63
+ use Symfony \WebpackEncoreBundle \Asset \EntrypointLookupInterface ;
62
64
63
65
return static function (ContainerConfigurator $ container ) {
64
66
$ container ->services ()
385
387
])
386
388
->tag ('console.command ' )
387
389
390
+ ->set ('console.command.error_dumper ' , ErrorDumpCommand::class)
391
+ ->args ([
392
+ service ('filesystem ' ),
393
+ service ('error_renderer.html ' ),
394
+ service (EntrypointLookupInterface::class)->nullOnInvalid (),
395
+ ])
396
+ ->tag ('console.command ' )
397
+
388
398
->set ('console.messenger.application ' , Application::class)
389
399
->share (false )
390
400
->call ('setAutoExit ' , [false ])
Original file line number Diff line number Diff line change 23
23
"symfony/config" : " ^7.3" ,
24
24
"symfony/dependency-injection" : " ^7.2" ,
25
25
"symfony/deprecation-contracts" : " ^2.5|^3" ,
26
- "symfony/error-handler" : " ^6.4|^7.0 " ,
26
+ "symfony/error-handler" : " ^7.3 " ,
27
27
"symfony/event-dispatcher" : " ^6.4|^7.0" ,
28
28
"symfony/http-foundation" : " ^7.3" ,
29
29
"symfony/http-kernel" : " ^7.2" ,
You can’t perform that action at this time.
0 commit comments