File tree 2 files changed +2
-0
lines changed
src/Symfony/Component/Messenger 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ CHANGELOG
4
4
7.2
5
5
---
6
6
7
+ * Add ` $previous ` to the exception output at the ` messenger:failed:show ` command
7
8
* ` WrappedExceptionsInterface ` now extends PHP's ` Throwable ` interface
8
9
* Add ` #[AsMessage] ` attribute with ` $transport ` parameter for message routing
9
10
* Add ` --format ` option to the ` messenger:stats ` command
Original file line number Diff line number Diff line change @@ -182,6 +182,7 @@ private function createCloner(): ?ClonerInterface
182
182
Caster::PREFIX_VIRTUAL .'file ' => $ flattenException ->getFile (),
183
183
Caster::PREFIX_VIRTUAL .'line ' => $ flattenException ->getLine (),
184
184
Caster::PREFIX_VIRTUAL .'trace ' => new TraceStub ($ flattenException ->getTrace ()),
185
+ Caster::PREFIX_VIRTUAL .'previous ' => $ flattenException ->getPrevious (),
185
186
];
186
187
}]);
187
188
You can’t perform that action at this time.
0 commit comments