Browse Source

Refactoring the Benchmark class.

Taylor Otwell 13 years ago
parent
commit
89032f8a2a
1 changed files with 6 additions and 1 deletions
  1. 6 1
      system/benchmark.php

+ 6 - 1
system/benchmark.php

@@ -28,7 +28,12 @@ class Benchmark {
 	 */
 	 */
 	public static function check($name)
 	public static function check($name)
 	{
 	{
-		return (array_key_exists($name, static::$marks)) ? number_format((microtime(true) - static::$marks[$name]) * 1000, 2) : 0.0;
+		if (array_key_exists($name, static::$marks))
+		{
+			return number_format((microtime(true) - static::$marks[$name]) * 1000, 2);
+		}
+
+		return 0.0;
 	}
 	}
 
 
 	/**
 	/**