From 61edca8fb3178e4144ac19c0fc42500b99f3bbd9 Mon Sep 17 00:00:00 2001 From: Marcel Werk Date: Thu, 24 Nov 2011 18:40:50 +0100 Subject: [PATCH] Fixed source comments --- .../files/lib/system/benchmark/Benchmark.class.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wcfsetup/install/files/lib/system/benchmark/Benchmark.class.php b/wcfsetup/install/files/lib/system/benchmark/Benchmark.class.php index c9fa90279b..ab3a1981eb 100644 --- a/wcfsetup/install/files/lib/system/benchmark/Benchmark.class.php +++ b/wcfsetup/install/files/lib/system/benchmark/Benchmark.class.php @@ -18,7 +18,7 @@ class Benchmark extends SingletonFactory { /** * general benchmark start time - * @var integer + * @var float */ protected $startTime = 0; @@ -36,7 +36,7 @@ class Benchmark extends SingletonFactory { /** * total sql query execution time - * @var unknown_type + * @var float */ protected $queryTime = 0; @@ -85,7 +85,7 @@ class Benchmark extends SingletonFactory { /** * Returns the execution time. * - * @return integer + * @return float */ public function getExecutionTime() { return $this->compareMicrotimes($this->startTime, self::getMicrotime()); @@ -94,7 +94,7 @@ class Benchmark extends SingletonFactory { /** * Returns the sql query execution time * - * @return integer + * @return float */ public function getQueryExecutionTime() { return $this->queryTime; -- 2.20.1