-
Notifications
You must be signed in to change notification settings - Fork 9
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
Update GitHub workflows #86
Conversation
Functions.php
Outdated
@@ -43,6 +42,7 @@ public static function register($pdo) | |||
* @param string $string column value | |||
* @param string $separator separator added between values | |||
*/ | |||
// phpcs:ignore PSR1.Methods.CamelCapsMethodName.NotCamelCaps |
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.
any reason why we can't rename this method to groupConcatStep
?
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 good reasons, except that I generally avoid renaming public methods. But those two are safe, so I've just renamed them.
Functions.php
Outdated
@@ -65,6 +65,7 @@ public static function GroupConcatStep(&$context, $rownumber, $string, $separato | |||
* @param int $rownumber number of rows over which the aggregate was performed. | |||
* @return null|string | |||
*/ | |||
// phpcs:ignore PSR1.Methods.CamelCapsMethodName.NotCamelCaps |
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.
same here?
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.
done
The new workflow also checks code style, so some fixes are included in this PR.