From: Marcel Werk Date: Thu, 24 Nov 2011 17:40:50 +0000 (+0100) Subject: Fixed source comments X-Git-Tag: 2.0.0_Beta_1~1570 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=61edca8fb3178e4144ac19c0fc42500b99f3bbd9;p=GitHub%2FWoltLab%2FWCF.git Fixed source comments --- 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;