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>2013-10-08 09:24:28 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-08 09:24:28 +0400
commit1fa8da9b963e99e08c829fe6491e8ccf2d1054e2 (patch)
tree137c50850a5f21f1651f8066d4bd381a661e1987 /core/Archive.php
parentfcbef99dbf93df94ff5ed4cfaa5eeebfcf4aac14 (diff)
Applying phpstorm code style PSR refs #3771
Diffstat (limited to 'core/Archive.php')
-rw-r--r--core/Archive.php17
1 files changed, 9 insertions, 8 deletions
diff --git a/core/Archive.php b/core/Archive.php
index b29aef2731..5e09d1be2f 100644
--- a/core/Archive.php
+++ b/core/Archive.php
@@ -9,10 +9,11 @@
* @package Piwik
*/
namespace Piwik;
+
use Piwik\Archive\Parameters;
use Piwik\ArchiveProcessor\Rules;
-use Piwik\DataAccess\ArchiveSelector;
+use Piwik\DataAccess\ArchiveSelector;
use Piwik\Period\Range;
/**
@@ -284,12 +285,12 @@ class Archive
* Optionally loads the table recursively,
* or optionally fetches a given subtable with $idSubtable
*
- * @param string $name
- * @param int $idSite
- * @param string $period
- * @param Date $date
- * @param string $segment
- * @param bool $expanded
+ * @param string $name
+ * @param int $idSite
+ * @param string $period
+ * @param Date $date
+ * @param string $segment
+ * @param bool $expanded
* @param int|null $idSubtable
* @param int|null $depth
*
@@ -363,7 +364,7 @@ class Archive
$value = $this->uncompress($row['value']);
$result->addMetadata($idSite, $periodStr, 'ts_archived', $row['ts_archived']);
}
-
+
$resultRow = & $result->get($idSite, $periodStr);
$resultRow[$row['name']] = $value;
}