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:
authorStefan Giehl <stefan@matomo.org>2020-01-28 00:20:43 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2020-01-28 00:20:43 +0300
commit907a3d6f78693bcaadde7460fe0c2224161de63b (patch)
tree1c87dd15286dca1afc9fc6b20ca8ca80ca3cb218 /plugins/Contents
parentf734983e24af1dd2c1b37208bc18d6dea4114815 (diff)
Use rebranded components (#15253)
Diffstat (limited to 'plugins/Contents')
-rw-r--r--plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php b/plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php
index 4285d3ee08..aea0a68c51 100644
--- a/plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php
+++ b/plugins/Contents/tests/Fixtures/TwoVisitsWithContents.php
@@ -10,7 +10,7 @@ namespace Piwik\Plugins\Contents\tests\Fixtures;
use Piwik\Date;
use Piwik\Plugins\Goals\API as APIGoals;
use Piwik\Tests\Framework\Fixture;
-use PiwikTracker;
+use MatomoTracker;
/**
* Tracks contents
@@ -56,13 +56,13 @@ class TwoVisitsWithContents extends Fixture
$this->trackContentImpressionsAndInteractions($vis2);
}
- private function moveTimeForward(PiwikTracker $vis, $minutes)
+ private function moveTimeForward(MatomoTracker $vis, $minutes)
{
$hour = $minutes / 60;
$vis->setForceVisitDateTime(Date::factory($this->dateTime)->addHour($hour)->getDatetime());
}
- protected function trackContentImpressionsAndInteractions(PiwikTracker $vis)
+ protected function trackContentImpressionsAndInteractions(MatomoTracker $vis)
{
$vis->setUrl('http://www.example.org/page');
$vis->setGenerationTime(333);