Merge "Remove empty lines at begin of function, if, foreach, switch"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Mon, 3 Jul 2017 19:19:27 +0000 (19:19 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Mon, 3 Jul 2017 19:19:27 +0000 (19:19 +0000)
1  2 
includes/specials/SpecialRecentchanges.php

@@@ -213,7 -213,7 +213,7 @@@ class SpecialRecentChanges extends Chan
                $tagHitCounts = array_merge( $explicitlyDefinedTags, $softwareActivatedTags, $tagStats );
  
                // Sort by hits
 -              asort( $tagHitCounts );
 +              arsort( $tagHitCounts );
  
                // Build the list and data
                $result = [];
         * @inheritdoc
         */
        protected function buildQuery( &$tables, &$fields, &$conds,
-               &$query_options, &$join_conds, FormOptions $opts ) {
+               &$query_options, &$join_conds, FormOptions $opts
+       ) {
                $dbr = $this->getDB();
                parent::buildQuery( $tables, $fields, $conds,
                        $query_options, $join_conds, $opts );
         * @inheritdoc
         */
        protected function doMainQuery( $tables, $fields, $conds, $query_options,
-               $join_conds, FormOptions $opts ) {
+               $join_conds, FormOptions $opts
+       ) {
                $dbr = $this->getDB();
                $user = $this->getUser();