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>2015-02-27 06:02:08 +0300
committermattab <matthieu.aubry@gmail.com>2015-02-27 06:02:08 +0300
commitb08b9295293668eb17aa21639bae932e915633cb (patch)
tree36051a3ad4f804be9b2d1a96335577f5eb3b6440 /core/Archive
parentfffa24c111dc3ed92ba5b3fc8395e05384e86f99 (diff)
Fixes #7310 - remove unused code & logic
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;
- }
-
}