Fixed source comments
authorMarcel Werk <burntime@woltlab.com>
Thu, 24 Nov 2011 17:40:50 +0000 (18:40 +0100)
committerMarcel Werk <burntime@woltlab.com>
Thu, 24 Nov 2011 17:40:50 +0000 (18:40 +0100)
wcfsetup/install/files/lib/system/benchmark/Benchmark.class.php

index c9fa90279bb66a2b6758f6c72ed15c8b08d7e524..ab3a1981ebc17da1117416d0c0d1166b837fe684 100644 (file)
@@ -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;