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:
authorChristian Raue <christian.raue@gmail.com>2014-07-23 22:27:56 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-23 22:27:56 +0400
commitd9adcfe6169c6c10059a670f2ed984908eb4e105 (patch)
tree25cfca25851214c1b744a07e67e9c120adfd7513 /tests/PHPUnit/Fixtures/ManySitesImportedLogs.php
parent2788e1dad22533f3e0dbddbdd16c51251c4e130a (diff)
removed lots of trailing whitespace
Diffstat (limited to 'tests/PHPUnit/Fixtures/ManySitesImportedLogs.php')
-rw-r--r--tests/PHPUnit/Fixtures/ManySitesImportedLogs.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/PHPUnit/Fixtures/ManySitesImportedLogs.php b/tests/PHPUnit/Fixtures/ManySitesImportedLogs.php
index 33e13f7999..2ddc236f0c 100644
--- a/tests/PHPUnit/Fixtures/ManySitesImportedLogs.php
+++ b/tests/PHPUnit/Fixtures/ManySitesImportedLogs.php
@@ -25,7 +25,7 @@ class ManySitesImportedLogs extends Fixture
public $idSite2 = 2;
public $idGoal = 1;
public $segments = null; // should be array mapping segment name => segment definition
-
+
public $addSegments = false;
public static function createAccessInstance()
@@ -112,28 +112,28 @@ class ManySitesImportedLogs extends Fixture
$this->replayLogFile();
$this->logCustomFormat();
}
-
+
private function setupSegments()
{
if (!$this->addSegments) {
return;
}
-
+
if ($this->segments === null) {
$this->segments = $this->getDefaultSegments();
}
-
+
foreach ($this->segments as $segmentName => $info) {
$idSite = false;
if (isset($info['idSite'])) {
$idSite = $info['idSite'];
}
-
+
$autoArchive = true;
if (isset($info['autoArchive'])) {
$autoArchive = $info['autoArchive'];
}
-
+
$enabledAllUsers = true;
if (isset($info['enabledAllUsers'])) {
$enabledAllUsers = $info['enabledAllUsers'];