Merge "Remove user rights link from anonymous contributions pages Remove the user...
[lhc/web/wiklou.git] / maintenance / benchmarks / bench_wfIsWindows.php
index c729206..4caebc5 100644 (file)
@@ -1,14 +1,33 @@
 <?php
 /**
  * This come from r75429 message
- * @author Platonides 
+ *
+ * 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
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
+ * @file
+ * @ingroup Benchmark
+ * @author  Platonides
  */
 
 require_once( dirname( __FILE__ ) . '/Benchmarker.php' );
 class bench_wfIsWindows extends Benchmarker {
 
        public function __construct() {
-               parent::__construct();  
+               parent::__construct();
+               $this->mDescription = "Benchmark for wfIsWindows.";
        }
 
        public function execute() {
@@ -20,16 +39,12 @@ class bench_wfIsWindows extends Benchmarker {
        }
 
        static function is_win() {
-               return substr( php_uname(), 0, 7 == 'Windows' );
+               return substr( php_uname(), 0, 7 ) == 'Windows' ;
        }
 
        // bench function 1
        function wfIsWindows() {
-               if( self::is_win() ) {
-                       return true;
-               } else {
-                       return false;
-               }
+               return self::is_win();
        }
 
        // bench function 2
@@ -43,4 +58,4 @@ class bench_wfIsWindows extends Benchmarker {
 }
 
 $maintClass = 'bench_wfIsWindows';
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );