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:
Diffstat (limited to 'core/Updates/2.16.0-rc2.php')
-rw-r--r--core/Updates/2.16.0-rc2.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/core/Updates/2.16.0-rc2.php b/core/Updates/2.16.0-rc2.php
deleted file mode 100644
index 618756d52c..0000000000
--- a/core/Updates/2.16.0-rc2.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-/**
- * Piwik - free/libre analytics platform
- *
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- */
-
-namespace Piwik\Updates;
-
-use Piwik\Updater;
-use Piwik\Updates;
-use Piwik\Updater\Migration\Factory as MigrationFactory;
-
-class Updates_2_16_0_rc2 extends Updates
-{
- /**
- * @var MigrationFactory
- */
- private $migration;
-
- public function __construct(MigrationFactory $factory)
- {
- $this->migration = $factory;
- }
-
- public function getMigrations(Updater $updater)
- {
- return array(
- $this->migration->plugin->activate('PiwikPro')
- );
- }
-
- public function doUpdate(Updater $updater)
- {
- $updater->executeMigrations(__FILE__, $this->getMigrations($updater));
- }
-} \ No newline at end of file