-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
docs: fix PHPDoc types in Database Connection. #7433
docs: fix PHPDoc types in Database Connection. #7433
Conversation
@@ -98,7 +100,7 @@ public function getVersion(): string; | |||
* Should automatically handle different connections for read/write | |||
* queries if needed. | |||
* | |||
* @param mixed ...$binds | |||
* @param array|string|null ...$binds |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems a bug.
* @param array|string|null ...$binds | |
* @param array|string|null $binds |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there anything need to be fixed besides removing ...
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, for now.
The difference of the parameter count may be a bug.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
Description
See #6310
Checklist: