no comment.
This commit is contained in:
parent
5be4cdd82a
commit
7cc97822d0
1 changed files with 1 additions and 9 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue