-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Interfaces mis @throw
annotations
#7786
Comments
Documenting all You can gladly suggest those that are directly thrown in the Related: #7780 |
Well if you mean by unchecked exceptions, runtime exceptions, then I totally agree. So basically we'd want to add /**
* @throws \Doctrine\ORM\OptimisticLockException If a version check on an entity that
* makes use of optimistic locking fails.
* @throws ORMException
* @throws UniqueConstraintViolationException
*/ right? |
Something like that, but please look at the current 3.x work. |
See #6743 |
We're doing some housekeeping on the 3.0.0 milestone. Since nobody seems to be actively working on this topic I'm removing this PR from the 3.0.0 milestone. That being said, the issue does not really look actionable at the moment. I'd be happy to discuss and merge any PR adding reasonable |
@morozov mentioned https://phpstan.org/blog/bring-your-exceptions-under-control in doctrine/dbal#5777, we might want to look into it. |
Bug Report
Summary
Interfaces of, e.g.,
EntityManagerInterface
do not include@throw
annotations.Current behavior
This causes IDEs to not notice that for example calls to
EntityManagerInterface::flush
may cause exceptions.How to reproduce
Reference
EntityManagerInterface
in an IDE like PhpStorm or other, and have the following snippetExpected behavior
I expect the IDE to be able to tell, based on docblocks of the Doctrine library, that we should catch, (or re-throw) the exceptions which can occur.
The text was updated successfully, but these errors were encountered: