We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe7f3af commit 0193dcdCopy full SHA for 0193dcd
src/Symfony/Component/Messenger/CHANGELOG.md
@@ -4,6 +4,7 @@ CHANGELOG
4
7.2
5
---
6
7
+ * `WrappedExceptionsInterface` now extends PHP's `Throwable` interface
8
* Add `#[AsMessage]` attribute with `$transport` parameter for message routing
9
* Add `--format` option to the `messenger:stats` command
10
src/Symfony/Component/Messenger/Exception/WrappedExceptionsInterface.php
@@ -16,7 +16,7 @@
16
*
17
* @author Jeroen <https://github.com/Jeroeny>
18
*/
19
-interface WrappedExceptionsInterface
+interface WrappedExceptionsInterface extends \Throwable
20
{
21
/**
22
* @return \Throwable[]
0 commit comments