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
In the BaseConnection and MySQLi\Connection, setDatabase() and getVersion() are missing their access/visibility keywords:
setDatabase()
getVersion()
abstract function setDatabase(string $databaseName); abstract function getVersion(); function setDatabase(string $databaseName) { } function getVersion() { }
I would assume they should be public, but I figured I'd call it out just in case.
The text was updated successfully, but these errors were encountered:
Correct. Those were the results of simply porting the functions over.
Sorry, something went wrong.
a4c36a7
No branches or pull requests
In the BaseConnection and MySQLi\Connection,
setDatabase()
andgetVersion()
are missing their access/visibility keywords:I would assume they should be public, but I figured I'd call it out just in case.
The text was updated successfully, but these errors were encountered: