-
Notifications
You must be signed in to change notification settings - Fork 848
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
phpdocs for exceptions #605
Comments
I'm thinking that you could do something like this, which would also fix return types:
And then for
This is a lot of work and maintenance, but would work without actually changing or breaking anything. I am willing to make this change on all resources if you think this could be a solution. With regards to return types, we could avoid a lot of this:
|
@nickdnk Thanks a lot for providing so much details, this will definitely help us investigate a good solution. The problem here is that as soon as you do that, changing the type of exception that can be returned becomes a breaking change. We had that problem with stripe-java and it is quite tricky to solve. We usually recommend that, in all cases, you always catch I'm going to tag as future and CC a few people to think through this. |
It would be great if we could solve this. It's been bothering me for a while. With regards to your concern: Since this is annotation only, it can't ever actually break anything? It is going to give off a lot of new warnings for people that don't catch their exceptions, sure, but everything should continue to work in the exact same fashion as before. I don't know if you consider warnings a breaking change, but then of course this could be included in the next major version. I understand that this is an issue in Java, but those are checked exceptions, not annotations. And if you upgrade your API version, any exception/error changes are going to be introduced into your code regardless of your library or phpdocs. Similarly: If you then choose not to update your API version, but to update the library to include a new/changed exception, you could forcefully silence the new warning(s), which is not different from what you currently have to do if you use phpdocs. |
Many points may be improved here:
I suggest some changes for the next major and you should already think to deprecate stuff. Hope it helps. |
Hey everyone, thanks a lot for the feedback. We're considering releasing a new major version soon, so this is very helpful. @Nek- I'm considering making the following changes:
I think this would be more idiomatic and in alignment with most PHP developers' expectations. Do you agree?
Could you elaborate a bit more? Are you talking about documentation in the library itself, like PHPDoc annotations initially discussed here? @nickdnk First, sorry for the late reply! I agree that the use of traits makes the PHPDoc annotations somewhat less useful since they have to be very generic. While your proposed solution would work, I'm against it for the time being: the major motivation for switching to traits was to facilitate maintenance of the library. That said, we're currently experimenting with autogenerating parts of our client libraries' source code directly from the OpenAPI specification for Stripe's API. This is already live in stripe-java. We won't get to stripe-php immediately, but we will get to it eventually, and at that point all API resources and API request methods will have complete, up-to-date documentation. For now, I think just adding a |
@ob-stripe I'm fine with adding a |
@ob-stripe I meant add a part in the README that says what exception will be throw when. (because this is complicated to understand ATM) 👍 changes you planned sound nice |
@ob-stripe @Nek- If you use RuntimeExceptions, PHPStorm will ignore the exceptions entirely: Enabling detection of I would suggest you stick to |
Hello guys
As I'm sure most of you maintainers are aware of, I'm a big fan of phpdocs and use it extensively in my code. I am well aware that annotation changes nothing at runtime, but I find it very helpful in determining if I am missing a return type, not handling an exception, passing a wrong type and so on when I'm coding and reviewing my code.
Now, after you made the change to use traits (I think it was major version 5?), the phpdocs for thrown exceptions are all out of whack because of the shared methods used across (as far as I can tell) most requests.
For me, this results in a lot of this:
And if I don't include this comment, PHPStorm gives me a "redundant catch phrase" error, which, if I erroneously should accept this suggestion, would result in a working catch block being removed entirely. Not so great.
So, I tried to "start from the bottom" (of traits) to include all exceptions everywhere they are thrown. This of course results in all requests throwing almost all exceptions - which is simply incorrect; such as retrieving a customer then claims it can throw
\Stripe\Error\Card
. Not a good solution.Would it be possible to somehow at the very least have
InvalidRequest
,Card
, andBase
added in cases where these errors can be thrown? So that we have to handle (or silence)Base
, which I'm under the impression any endpoint can throw, and which would of course also catch any other unexpected exception (RateLimiting
,Authentication
etc.). If so, how could we do this? I would be happy to put in the work.The text was updated successfully, but these errors were encountered: