Add MusikAnimal to CREDITS
[lhc/web/wiklou.git] / maintenance / benchmarks / bench_if_switch.php
index 698a0f0..46c9d39 100644 (file)
@@ -34,14 +34,14 @@ require_once __DIR__ . '/Benchmarker.php';
 class BenchIfSwitch extends Benchmarker {
        public function __construct() {
                parent::__construct();
-               $this->mDescription = "Benchmark if elseif... versus switch case.";
+               $this->addDescription( 'Benchmark if elseif... versus switch case.' );
        }
 
        public function execute() {
-               $this->bench( array(
-                       array( 'function' => array( $this, 'doElseIf' ) ),
-                       array( 'function' => array( $this, 'doSwitch' ) ),
-               ) );
+               $this->bench( [
+                       [ 'function' => [ $this, 'doElseIf' ] ],
+                       [ 'function' => [ $this, 'doSwitch' ] ],
+               ] );
                print $this->getFormattedResults();
        }