Merge "Introduce ClearUserWatchlistJob"
[lhc/web/wiklou.git] / maintenance / benchmarks / bench_wfIsWindows.php
index 1cd2016..960ef0e 100644 (file)
@@ -31,39 +31,38 @@ require_once __DIR__ . '/Benchmarker.php';
  *
  * @ingroup Benchmark
  */
-class bench_wfIsWindows extends Benchmarker {
-
+class BenchWfIsWindows extends Benchmarker {
        public function __construct() {
                parent::__construct();
-               $this->mDescription = "Benchmark for wfIsWindows.";
+               $this->addDescription( 'Benchmark for wfIsWindows.' );
        }
 
        public function execute() {
-               $this->bench( array(
-                       array( 'function' => array( $this, 'wfIsWindows' ) ),
-                       array( 'function' => array( $this, 'wfIsWindowsCached' ) ),
-               ));
-               print $this->getFormattedResults();
+               $this->bench( [
+                       [ 'function' => [ $this, 'wfIsWindows' ] ],
+                       [ 'function' => [ $this, 'wfIsWindowsCached' ] ],
+               ] );
        }
 
-       static function is_win() {
-               return substr( php_uname(), 0, 7 ) == 'Windows' ;
+       protected static function is_win() {
+               return substr( php_uname(), 0, 7 ) == 'Windows';
        }
 
        // bench function 1
-       function wfIsWindows() {
+       protected function wfIsWindows() {
                return self::is_win();
        }
 
        // bench function 2
-       function wfIsWindowsCached() {
+       protected function wfIsWindowsCached() {
                static $isWindows = null;
-               if( $isWindows == null ) {
+               if ( $isWindows == null ) {
                        $isWindows = self::is_win();
                }
+
                return $isWindows;
        }
 }
 
-$maintClass = 'bench_wfIsWindows';
+$maintClass = 'BenchWfIsWindows';
 require_once RUN_MAINTENANCE_IF_MAIN;