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
path: root/core
diff options
context:
space:
mode:
authordiosmosis <benaka@piwik.pro>2015-10-08 17:12:14 +0300
committerdiosmosis <benaka@piwik.pro>2015-10-12 21:05:37 +0300
commit8c005494372645af76c973decd5b51d0884b87dc (patch)
tree8666adcf282679046f89ef503d6fcdc84cd3cff6 /core
parent5315725d98ea8a07c0faf600c21150e514ce0cb8 (diff)
Fill out missing docblock.
Diffstat (limited to 'core')
-rw-r--r--core/Period.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/core/Period.php b/core/Period.php
index 794302fe0e..70a47d2905 100644
--- a/core/Period.php
+++ b/core/Period.php
@@ -283,7 +283,7 @@ abstract class Period
* Returns the label of the period type that is one size smaller than this one, or null if
* it's the smallest.
*
- * Range periods and other such 'period collections' are not considered as separte from
+ * Range periods and other such 'period collections' are not considered as separate from
* the value type of the collection. So a range period will return the result of the
* subperiod's `getImmediateChildPeriodLabel()` method.
*
@@ -293,7 +293,12 @@ abstract class Period
abstract public function getImmediateChildPeriodLabel();
/**
- * TODO
+ * Returns the label of the period type that is one size bigger than this one, or null
+ * if it's the biggest.
+ *
+ * Range periods and other such 'period collections' are not considered as separate from
+ * the value type of the collection. So a range period will return the result of the
+ * subperiod's `getParentPeriodLabel()` method.
*
* @ignore
*/