-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PhpStorm warns about unhandled GuzzleException #2184
Comments
Big +1 on this. Since it's not possible to |
+1 |
+1 |
Can't extend throwable because guzzle needs to support php 5 still. |
It would probably be enough to extend |
+1 |
1 similar comment
+1 |
+1 - so tired of "Unhandled exception" warnings and |
+1 Warning: include(Throwable.php): failed to open stream: No such file or directory Version php 5.6. |
According to the packagist 2019.1 PHP Versions Stats, PHP 5 usage across all versions is now around 10%. |
Cant we lock a version for PHP 5.6 support and then drop support and extended |
+1 |
1 similar comment
+1 |
Extending Throwable is not enough. GuzzleException should have been a class extending \Exception instead of an interface extending \Throwable |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed after 2 weeks if no further activity occurs. Thank you for your contributions. |
What's the status of this? Searches show nothing helpful and this is still happening for me in PhpStorm 2020.3.2 Did I miss the fix somewhere, have I done something wrong? |
Not a bug, just inconvenience in development. The PhpStorm IDE has built-in code analysis and it warns on my code which uses
(new GuzzleHttp())->send()
method without catchingGuzzleException
exeption. But I'm catchingClientException
andRequestException
instead and I think this should be enough. Here's my code:PhpStorm wants me to add yet another catch section with GuzzleException (which is not exception actually, just interface) or to add:
in PhpDoc of my method.
The problem is going from ClientInterface where PhpDoc describes that it
@throws GuzzleException
:and concrete implementation Client doesn't have PhpDoc at all:
This is why PhpStorm takes throwing exceptions from interface. Please add PhpDoc to
Client::send()
method. This will override@throws
tag in the interface and fix the problem.I think that declaring in PhpDoc
@throws
tag the class which is not descendant of\Exception
class is anti-pattern and bad practice. It forces developers to catch this exception which is not exception. MakeGuzzleException
abstract class extending from\RuntimeException
and inherit from it all other classes if needed or not use it in@throws
tags.Actually you don't need to declare
@throws
tags since all your exceptions are inherited from\RuntimeException
. This kind of exceptions that can happen almost anywhere and you can but don't have to catch it everywhere. This is why you don't need to add it in PhpDoc. This logic is taken from Java. In the Java only RuntimeException can be not catched. Otherwise the code will not compile.The text was updated successfully, but these errors were encountered: