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-07-20 10:47:25 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-20 10:47:25 +0400
commit66536db9562185ba7e98ca3ef3a4349ca92b8c45 (patch)
tree8cd4b1d4561ac7f66f01bfdb70893b6695c2b396 /core/ArchiveProcessor
parente492c76009ea81c9513ae359f5fd41e84703116f (diff)
Converting to namespace: Archive
Diffstat (limited to 'core/ArchiveProcessor')
-rw-r--r--core/ArchiveProcessor/Period.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/core/ArchiveProcessor/Period.php b/core/ArchiveProcessor/Period.php
index a53182a2af..3616e6d56d 100644
--- a/core/ArchiveProcessor/Period.php
+++ b/core/ArchiveProcessor/Period.php
@@ -8,6 +8,7 @@
* @category Piwik
* @package Piwik
*/
+use Piwik\Archive;
use Piwik\Piwik;
use Piwik\Common;
@@ -33,7 +34,7 @@ class Piwik_ArchiveProcessor_Period extends Piwik_ArchiveProcessor
);
/**
- * @var Piwik_Archive
+ * @var Archive
*/
protected $archiver = null;
@@ -135,7 +136,7 @@ class Piwik_ArchiveProcessor_Period extends Piwik_ArchiveProcessor
{
if (empty($this->archiver)) {
$subPeriods = $this->getPeriod()->getSubperiods();
- $this->archiver = Piwik_Archive::factory($this->getSegment(), $subPeriods, array($this->getSite()->getId()));
+ $this->archiver = Archive::factory($this->getSegment(), $subPeriods, array($this->getSite()->getId()));
}
}