File size: 951 Bytes
f8ce8bb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | <?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Updater\Migration;
use Piwik\Updater\Migration\Db\Factory as DbFactory;
use Piwik\Updater\Migration\Plugin\Factory as PluginFactory;
use Piwik\Updater\Migration\Config\Factory as ConfigFactory;
/**
* Migration factory to create various migrations that implement the Migration interface.
*
* @api
*/
class Factory
{
/**
* @var DbFactory
*/
public $db;
/**
* @var PluginFactory
*/
public $plugin;
/**
* @var ConfigFactory
*/
public $config;
/**
* @ignore
*/
public function __construct(DbFactory $dbFactory, PluginFactory $pluginFactory, ConfigFactory $configFactory)
{
$this->db = $dbFactory;
$this->plugin = $pluginFactory;
$this->config = $configFactory;
}
}
|