Skip to content
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

Closed
gugglegum opened this issue Oct 31, 2018 · 17 comments
Closed

PhpStorm warns about unhandled GuzzleException #2184

gugglegum opened this issue Oct 31, 2018 · 17 comments
Labels
lifecycle/stale No activity for a long time

Comments

@gugglegum
Copy link

Q A
Bug? no
New Feature? no
Version 6.3.3

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 catching GuzzleException exeption. But I'm catching ClientException and RequestException instead and I think this should be enough. Here's my code:

    /**
     * @param Request $request
     * @return Response
     */
    protected function executeRequest(Request $request): Response
    {
        $this->lastRequest = $request;
        try {
            $this->lastResponse = (new GuzzleHttp())->send($request, $this->getRequestOptions());
        } catch (ClientException $e) {
            $this->lastResponse = $e->getResponse();
            throw new FatalException($this->getExceptionMessage($e));
        } catch (RequestException $e) {
            $this->lastResponse = $e->getResponse();
            throw new Exception($this->getExceptionMessage($e));
        }
        return $this->lastResponse;
    }

PhpStorm wants me to add yet another catch section with GuzzleException (which is not exception actually, just interface) or to add:

     * @throws \GuzzleHttp\Exception\GuzzleException

in PhpDoc of my method.

The problem is going from ClientInterface where PhpDoc describes that it @throws GuzzleException:

    /**
     * Send an HTTP request.
     *
     * @param RequestInterface $request Request to send
     * @param array            $options Request options to apply to the given
     *                                  request and to the transfer.
     *
     * @return ResponseInterface
     * @throws GuzzleException
     */
    public function send(RequestInterface $request, array $options = []);

and concrete implementation Client doesn't have PhpDoc at all:


    public function send(RequestInterface $request, array $options = [])
    {
        $options[RequestOptions::SYNCHRONOUS] = true;
        return $this->sendAsync($request, $options)->wait();
    }

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. Make GuzzleException 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.

@Jalle19
Copy link

Jalle19 commented Nov 7, 2018

Big +1 on this. Since it's not possible to throw anything that isn't a \Throwable it's simply wrong to say you throw a random interface.

@filipp-kucheriavenko
Copy link

filipp-kucheriavenko commented Nov 20, 2018

+1
\GuzzleHttp\Exception\GuzzleException should extend \Throwable

@koderoff
Copy link

+1

@GrahamCampbell
Copy link
Member

Can't extend throwable because guzzle needs to support php 5 still.

@Jalle19
Copy link

Jalle19 commented Jan 15, 2019

It would probably be enough to extend \Exception

@likemute
Copy link

+1

1 similar comment
@JohJohan
Copy link

+1

@nickdnk
Copy link

nickdnk commented Feb 28, 2019

+1 - so tired of "Unhandled exception" warnings and @throws \Throwable

@gabi77
Copy link

gabi77 commented May 6, 2019

+1 Warning: include(Throwable.php): failed to open stream: No such file or directory

Version php 5.6.
Throwable extension is only for php7
it would be necessary to test the php version or the existence of the class Throwable for used Throwable

@karser
Copy link

karser commented May 31, 2019

Can't extend throwable because guzzle needs to support php 5 still.

According to the packagist 2019.1 PHP Versions Stats, PHP 5 usage across all versions is now around 10%.

@JohJohan
Copy link

JohJohan commented Jun 1, 2019

Cant we lock a version for PHP 5.6 support and then drop support and extended \Exception?

@panvid
Copy link

panvid commented Jul 17, 2019

+1

There is already a fix, that prevents the problem with PHP 5.x (if you use this version, you are not a PHP developer, dude):

Ticket: #2184
With the commit: e21a982

Now keep focus on this ticket.

@FunTimeCoding
Copy link

+1

1 similar comment
@numediaweb
Copy link

+1

@VincentLanglet
Copy link

Extending Throwable is not enough.
We still need to catch both \Exception and GuzzleException.

GuzzleException should have been a class extending \Exception instead of an interface extending \Throwable

@stale
Copy link

stale bot commented Sep 25, 2020

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.

@stale stale bot added the lifecycle/stale No activity for a long time label Sep 25, 2020
@stale stale bot closed this as completed Oct 9, 2020
@gdespaux
Copy link

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
lifecycle/stale No activity for a long time
Projects
None yet
Development

No branches or pull requests