https://www.mediawiki.org/wiki/Manual:Coding_conventions/PHP#Assignment_expressions
You really don't need to do:
while( $user = $result->fetchObject() ) {
Version: unspecified
Severity: normal
https://www.mediawiki.org/wiki/Manual:Coding_conventions/PHP#Assignment_expressions
You really don't need to do:
while( $user = $result->fetchObject() ) {
Version: unspecified
Severity: normal
(In reply to comment #0)
You really don't need to do:
while( $user = $result->fetchObject() ) {
You know, there's nothing *harmful* about doing it though ;-)