Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 3
v320a1
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 3
12.00
0.00% covered (danger)
0.00%
0 / 3
 effectively_installed
0.00% covered (danger)
0.00%
0 / 1
2.00
0.00% covered (danger)
0.00%
0 / 1
 depends_on
0.00% covered (danger)
0.00%
0 / 1
2.00
0.00% covered (danger)
0.00%
0 / 1
 update_data
0.00% covered (danger)
0.00%
0 / 1
2.00
0.00% covered (danger)
0.00%
0 / 1
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\db\migration\data\v320;
class v320a1 extends \phpbb\db\migration\container_aware_migration
{
    public function effectively_installed()
    {
        return phpbb_version_compare($this->config['version'], '3.2.0-a1', '>=');
    }
    static public function depends_on()
    {
        return [
            '\phpbb\db\migration\data\v320\dev',
            '\phpbb\db\migration\data\v320\allowed_schemes_links',
            '\phpbb\db\migration\data\v320\announce_global_permission',
            '\phpbb\db\migration\data\v320\remove_profilefield_wlm',
            '\phpbb\db\migration\data\v320\font_awesome_update',
            '\phpbb\db\migration\data\v320\icons_alt',
            '\phpbb\db\migration\data\v320\log_post_id',
            '\phpbb\db\migration\data\v320\remove_outdated_media',
            '\phpbb\db\migration\data\v320\notifications_board',
        ];
    }
    public function update_data()
    {
        return [
            ['config.update', ['version', '3.2.0-a1']],
        ];
    }
}