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 11:09:46 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-20 11:09:46 +0400
commit0a63210e3eae7562af1a3dbee340eb1ee140db3d (patch)
treec9f7c3a36a4b344b25c12aa04fed0733efb3bfa0 /core/ArchiveProcessor.php
parent7ca35544d15cdb41b17283e693c8a14777c923ad (diff)
Converting to namespace: Period*, Metrics, Segment, SegmentExpression, PluginsManager
Diffstat (limited to 'core/ArchiveProcessor.php')
-rw-r--r--core/ArchiveProcessor.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/ArchiveProcessor.php b/core/ArchiveProcessor.php
index 42185a219b..63b16ebd93 100644
--- a/core/ArchiveProcessor.php
+++ b/core/ArchiveProcessor.php
@@ -11,6 +11,7 @@
use Piwik\Config;
use Piwik\Period;
use Piwik\Piwik;
+use Piwik\Segment;
use Piwik\Site;
/**
@@ -92,11 +93,11 @@ abstract class Piwik_ArchiveProcessor
private $period = null;
/**
- * @var Piwik_Segment
+ * @var Segment
*/
private $segment = null;
- public function __construct(Period $period, Site $site, Piwik_Segment $segment)
+ public function __construct(Period $period, Site $site, Segment $segment)
{
$this->period = $period;
$this->site = $site;
@@ -132,7 +133,7 @@ abstract class Piwik_ArchiveProcessor
}
/**
- * @return Piwik_Segment
+ * @return Segment
*/
public function getSegment()
{
@@ -436,7 +437,7 @@ abstract class Piwik_ArchiveProcessor
if ($pluginBeingProcessed == $pluginName) {
return true;
}
- if (!Piwik_PluginsManager::getInstance()->isPluginLoaded($pluginBeingProcessed)) {
+ if (!PluginsManager::getInstance()->isPluginLoaded($pluginBeingProcessed)) {
return true;
}
return false;