Archived
1
0
Fork 0

no comment.

This commit is contained in:
H Hautakoski 2010-09-19 16:28:03 +02:00
parent 5be4cdd82a
commit 7cc97822d0

View file

@ -6,14 +6,8 @@ class Fiktiv_Performance
* @var float
*/
protected static $_start = null;
protected static $_end = null;
protected static $_result = null;
/**
* @var float
*/
protected static $_end = null;
/**
* @return void
*/
@ -27,9 +21,7 @@ class Fiktiv_Performance
*/
public static function end()
{
self::$_end = microtime(true);
self::$_result = self::$_end - self::$_start;
self::$_result = microtime(true) - self::$_start;
return self::result();
}