We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d4885 commit 2c95f8dCopy full SHA for 2c95f8d
CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Change Log
2
3
+## 1.14.3 - Unreleased
4
+
5
+- [#207](https://github.com/php-http/discovery/pull/207) - Updates Exception to extend Throwable solving static analysis errors for consumers
6
7
## 1.14.2 - 2022-05-25
8
9
- [#202](https://github.com/php-http/discovery/pull/202) - Avoid error when the Symfony PSR-18 client exists but its dependencies are not installed
src/Exception.php
@@ -2,11 +2,12 @@
namespace Http\Discovery;
+use Throwable;
/**
* An interface implemented by all discovery related exceptions.
- *
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
10
*/
-interface Exception
11
+interface Exception extends Throwable
12
{
13
}
0 commit comments