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
The PDO_MYSQL module is not enabled on VIP. Plugins reliant on PDO like MailPoet are therefore currently not compatible with VIP.
An error should be thrown on an attempt to create a PDO connection.
$db = new PDO();
Any attempt to use PDO should be reported.
The text was updated successfully, but these errors were encountered:
The upstream WPCS repo already has a sniff which does this: WordPress.DB.RestrictedClasses: https://github.com/WordPress/WordPress-Coding-Standards/blob/develop/WordPress/Sniffs/DB/RestrictedClassesSniff.php
WordPress.DB.RestrictedClasses
Sorry, something went wrong.
No branches or pull requests
What problem would the enhancement address for VIP?
The PDO_MYSQL module is not enabled on VIP. Plugins reliant on PDO like MailPoet are therefore currently not compatible with VIP.
Describe the solution you'd like
An error should be thrown on an attempt to create a PDO connection.
What code should be reported as a violation?
$db = new PDO();
What code should not be reported as a violation?
Any attempt to use PDO should be reported.
The text was updated successfully, but these errors were encountered: