Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
commit1fa8da9b963e99e08c829fe6491e8ccf2d1054e2 (patch)
tree137c50850a5f21f1651f8066d4bd381a661e1987 /core/MetricsFormatter.php
parentfcbef99dbf93df94ff5ed4cfaa5eeebfcf4aac14 (diff)
Applying phpstorm code style PSR refs #3771
Diffstat (limited to 'core/MetricsFormatter.php')
-rw-r--r--core/MetricsFormatter.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/MetricsFormatter.php b/core/MetricsFormatter.php
index 4760c03f6f..b86453d682 100644
--- a/core/MetricsFormatter.php
+++ b/core/MetricsFormatter.php
@@ -41,7 +41,7 @@ class MetricsFormatter
* Pretty format a time
*
* @param int $numberOfSeconds
- * @param bool $displayTimeAsSentence If set to true, will output "5min 17s", if false "00:05:17"
+ * @param bool $displayTimeAsSentence If set to true, will output "5min 17s", if false "00:05:17"
* @param bool $isHtml
* @param bool $round to the full seconds
* @return string
@@ -97,9 +97,9 @@ class MetricsFormatter
/**
* Pretty format a memory size value
*
- * @param number $size size in bytes
- * @param string $unit The specific unit to use, if any. If null, the unit is determined by $size.
- * @param int $precision The precision to use when rounding.
+ * @param number $size size in bytes
+ * @param string $unit The specific unit to use, if any. If null, the unit is determined by $size.
+ * @param int $precision The precision to use when rounding.
* @return string
*/
public static function getPrettySizeFromBytes($size, $unit = null, $precision = 1)