-
Notifications
You must be signed in to change notification settings - Fork 175
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
[Tools] Enable PHPCS for CouchDB_Import_Demographics.php #6785
[Tools] Enable PHPCS for CouchDB_Import_Demographics.php #6785
Conversation
338d3c2
to
03deda5
Compare
@laemtl |
03deda5
to
22f1ea5
Compare
@pierre-p-s Solved! |
@@ -158,7 +209,8 @@ function _generateQuery() { | |||
LEFT JOIN participant_status_options pso ON (pso.ID=ps.participant_status) | |||
LEFT JOIN feedback_bvl_thread fbt ON (fbt.CandID=c.CandID) | |||
LEFT JOIN feedback_bvl_entry fbe ON (fbe.FeedbackID=fbt.FeedbackID)"; | |||
$groupBy=" GROUP BY s.ID, | |||
//phpcs:enable | |||
$groupBy =" GROUP BY s.ID, |
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.
Maybe a space after the equal sign to match the syntax
} | ||
$whereClause=" WHERE s.Active='Y' AND c.Active='Y' AND c.Entity_type != 'Scanner'"; | ||
$whereClause =" WHERE s.Active='Y' AND c.Active='Y' " |
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
I ran phpcs and did not get an error. Just 3 minor comments on the code |
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.
Don't disable phpcs
22f1ea5
to
b1344fb
Compare
b1344fb
to
490c82a
Compare
@pierre-p-s, @driusan Ready for review. |
phpcs worked and comments were addressed |
Replaces #6001