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:
authordiosmosis <benakamoorthi@fastmail.fm>2014-07-21 12:43:41 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-07-21 12:43:41 +0400
commit53ed68859a2fdd071ac43f188ab11015d4f54f73 (patch)
tree60cc78accf2334f3e04d99a604f25566f7f5f078 /core/CronArchive.php
parent4df7c12ccd3af510c10e3fc958bdd15784304909 (diff)
Refs #5807, change CronArchive:: default value to be array() and modify docs.
Diffstat (limited to 'core/CronArchive.php')
-rw-r--r--core/CronArchive.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/CronArchive.php b/core/CronArchive.php
index f4b1f55f30..8fdc795591 100644
--- a/core/CronArchive.php
+++ b/core/CronArchive.php
@@ -156,10 +156,10 @@ class CronArchive
public $restrictToDateRange = false;
/**
- * A comma separated list of periods to launch archiving for. By default, day, week, month and year periods
+ * A list of periods to launch archiving for. By default, day, week, month and year periods
* are considered. This variable can limit the periods to, for example, week & month only.
*
- * @var string|false eg, `"day,week,month,year"`
+ * @var string[] eg, `array("day","week","month","year")`
*/
public $restrictToPeriods = false;