phpcs: More require/include is not a function
[lhc/web/wiklou.git] / maintenance / benchmarks / benchmarkHooks.php
index d614423..3f5d6db 100644 (file)
@@ -1,5 +1,7 @@
 <?php
 /**
+ * Benchmark %MediaWiki hooks.
+ *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * the Free Software Foundation; either version 2 of the License, or
  * http://www.gnu.org/copyleft/gpl.html
  *
  * @file
- * @ingroup Maintenance
+ * @ingroup Benchmark
  */
 
-require_once( dirname( __FILE__ ) . '/Benchmarker.php' );
+require_once __DIR__ . '/Benchmarker.php';
 
+/**
+ * Maintenance script that benchmarks %MediaWiki hooks.
+ *
+ * @ingroup Benchmark
+ */
 class BenchmarkHooks extends Benchmarker {
 
        public function __construct() {
                parent::__construct();
-               $this->mDescription = "Benchmark MediaWiki Hooks.";
+               $this->mDescription = 'Benchmark MediaWiki Hooks.';
        }
 
        public function execute() {
@@ -58,14 +65,14 @@ class BenchmarkHooks extends Benchmarker {
         * @return string
         */
        private function benchHooks( $trials = 10 ) {
-               $start = wfTime();
+               $start = microtime( true );
                for ( $i = 0; $i < $trials; $i++ ) {
                        wfRunHooks( 'Test' );
                }
-               $delta = wfTime() - $start;
+               $delta = microtime( true ) - $start;
                $pertrial = $delta / $trials;
-               return sprintf( "Took %6.2fs",
-                       $pertrial );
+               return sprintf( "Took %6.3fms",
+                       $pertrial * 1000 );
        }
 
        /**
@@ -76,5 +83,5 @@ class BenchmarkHooks extends Benchmarker {
        }
 }
 
-$maintClass = "BenchmarkHooks";
-require_once( RUN_MAINTENANCE_IF_MAIN );
+$maintClass = 'BenchmarkHooks';
+require_once RUN_MAINTENANCE_IF_MAIN;