Merge "Improve documentation for $wgRecentChangesFlags"
[lhc/web/wiklou.git] / maintenance / dumpIterator.php
index 2b3417a..dd468a9 100644 (file)
@@ -26,7 +26,7 @@
  * @ingroup Maintenance
  */
 
-require_once( __DIR__ . '/Maintenance.php' );
+require_once __DIR__ . '/Maintenance.php';
 
 /**
  * Base class for interating over a dump.
@@ -81,9 +81,9 @@ abstract class DumpIterator extends Maintenance {
                $this->conclusions();
 
                $delta = microtime( true ) - $this->startTime;
-               $this->error( "Done {$this->count} revisions in " . round($delta, 2) . " seconds " );
+               $this->error( "Done {$this->count} revisions in " . round( $delta, 2 ) . " seconds " );
                if ( $delta > 0 ) {
-                       $this->error( round($this->count / $delta, 2) . " pages/sec" );
+                       $this->error( round( $this->count / $delta, 2 ) . " pages/sec" );
                }
 
                # Perform the memory_get_peak_usage() when all the other data has been output so there's no damage if it dies.
@@ -126,7 +126,7 @@ abstract class DumpIterator extends Maintenance {
                        if ( $this->from != $title ) {
                                return;
                        }
-                       $this->output( "Skipped " . ($this->count - 1) . " pages\n" );
+                       $this->output( "Skipped " . ( $this->count - 1 ) . " pages\n" );
 
                        $this->count = 1;
                        $this->from = null;
@@ -177,4 +177,4 @@ class SearchDump extends DumpIterator {
 }
 
 $maintClass = "SearchDump";
-require_once( RUN_MAINTENANCE_IF_MAIN );
+require_once RUN_MAINTENANCE_IF_MAIN;