We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
DoctrineDbal
The Dbal driver looks like it has some sloppy exception handling. Notably:
DriverException
use
PDOException
PdoCommonMethods
It looks very much like this hasn't received much testing, much less reproducible automated tests.
The text was updated successfully, but these errors were encountered:
Looking at the first issue on this list
Sorry, something went wrong.
No branches or pull requests
The Dbal driver looks like it has some sloppy exception handling. Notably:
It tries to catch aDriverException
, which has been aliased in theuse
statement above and likely won't workPDOException
which may not be thrown by the driver at all; we can probably integration test this to prove itPdoCommonMethods
likely catchesPDOException
s which may never be thrown by DbalIt looks very much like this hasn't received much testing, much less reproducible automated tests.
The text was updated successfully, but these errors were encountered: