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/DataTable/Filter/BeautifyTimeRangeLabels.php
parentfcbef99dbf93df94ff5ed4cfaa5eeebfcf4aac14 (diff)
Applying phpstorm code style PSR refs #3771
Diffstat (limited to 'core/DataTable/Filter/BeautifyTimeRangeLabels.php')
-rw-r--r--core/DataTable/Filter/BeautifyTimeRangeLabels.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/core/DataTable/Filter/BeautifyTimeRangeLabels.php b/core/DataTable/Filter/BeautifyTimeRangeLabels.php
index 997ea2e70c..b86c7d398d 100644
--- a/core/DataTable/Filter/BeautifyTimeRangeLabels.php
+++ b/core/DataTable/Filter/BeautifyTimeRangeLabels.php
@@ -34,13 +34,13 @@ class BeautifyTimeRangeLabels extends BeautifyRangeLabels
/**
* Constructor.
*
- * @param DataTable $table The DataTable this filter will run over.
- * @param string $labelSecondsPlural A string to use when beautifying range labels
+ * @param DataTable $table The DataTable this filter will run over.
+ * @param string $labelSecondsPlural A string to use when beautifying range labels
* whose lower bound is between 0 and 60. Must be
* a format string that takes two numeric params.
- * @param string $labelMinutesSingular A string to use when replacing a range that
+ * @param string $labelMinutesSingular A string to use when replacing a range that
* equals 60-60 (or 1 minute - 1 minute).
- * @param string $labelMinutesPlural A string to use when replacing a range that
+ * @param string $labelMinutesPlural A string to use when replacing a range that
* spans multiple minutes. This must be a
* format string that takes one string parameter.
*/
@@ -58,8 +58,8 @@ class BeautifyTimeRangeLabels extends BeautifyRangeLabels
* If the lower bound of the range is less than 60 the pretty range label
* will be in seconds. Otherwise, it will be in minutes.
*
- * @param string $oldLabel The original label value.
- * @param int $lowerBound The lower bound of the range.
+ * @param string $oldLabel The original label value.
+ * @param int $lowerBound The lower bound of the range.
* @return string The pretty range label.
*/
public function getSingleUnitLabel($oldLabel, $lowerBound)
@@ -80,9 +80,9 @@ class BeautifyTimeRangeLabels extends BeautifyRangeLabels
* If the lower bound of the range is less than 60 the pretty range label
* will be in seconds. Otherwise, it will be in minutes.
*
- * @param string $oldLabel The original label value.
- * @param int $lowerBound The lower bound of the range.
- * @param int $upperBound The upper bound of the range.
+ * @param string $oldLabel The original label value.
+ * @param int $lowerBound The lower bound of the range.
+ * @param int $upperBound The upper bound of the range.
* @return string The pretty range label.
*/
public function getRangeLabel($oldLabel, $lowerBound, $upperBound)
@@ -101,8 +101,8 @@ class BeautifyTimeRangeLabels extends BeautifyRangeLabels
* If the lower bound of the range is less than 60 the pretty range label
* will be in seconds. Otherwise, it will be in minutes.
*
- * @param string $oldLabel The original label value.
- * @param int $lowerBound The lower bound of the range.
+ * @param string $oldLabel The original label value.
+ * @param int $lowerBound The lower bound of the range.
* @return string The pretty range label.
*/
public function getUnboundedLabel($oldLabel, $lowerBound)