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 <benaka@piwik.pro>2015-03-05 10:10:35 +0300
committerdiosmosis <benaka@piwik.pro>2015-03-05 10:10:35 +0300
commit5d80515873d503abcc1adbd43da919ebf080160b (patch)
treee3dbec1c31469cd92d06445932e46971332f720b /core/Archive
parent0509923974ef44205cae1c349fac94430705dc6e (diff)
parentb8f07213450f570174becd807a6932ac69050fe4 (diff)
Merge branch 'master' into 7181_isolated_archive_purging
Conflicts: core/ArchiveProcessor/Rules.php
Diffstat (limited to 'core/Archive')
-rw-r--r--core/Archive/Parameters.php14
1 files changed, 1 insertions, 13 deletions
diff --git a/core/Archive/Parameters.php b/core/Archive/Parameters.php
index d1a540dce0..ad7bef9eb6 100644
--- a/core/Archive/Parameters.php
+++ b/core/Archive/Parameters.php
@@ -35,22 +35,16 @@ class Parameters
*/
private $segment;
- /**
- * @var bool
- */
- private $skipAggregationOfSubTables;
-
public function getSegment()
{
return $this->segment;
}
- public function __construct($idSites, $periods, Segment $segment, $skipAggregationOfSubTables)
+ public function __construct($idSites, $periods, Segment $segment)
{
$this->idSites = $idSites;
$this->periods = $periods;
$this->segment = $segment;
- $this->skipAggregationOfSubTables = $skipAggregationOfSubTables;
}
public function getPeriods()
@@ -62,11 +56,5 @@ class Parameters
{
return $this->idSites;
}
-
- public function isSkipAggregationOfSubTables()
- {
- return $this->skipAggregationOfSubTables;
- }
-
}