Completed
Push — master ( d5fbc8...4c9094 )
by Erwan
03:26
created

dev   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 18
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A depends_on() 0 8 1
A update_data() 0 6 1
1
<?php
2
/**
3
 *
4
 * @package Quick Title Edition Extension
5
 * @copyright (c) 2015 ABDev
6
 * @copyright (c) 2015 PastisD
7
 * @copyright (c) 2015 Geolim4 <http://geolim4.com>
8
 * @copyright (c) 2015 Zoddo <[email protected]>
9
 * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
10
 *
11
 */
12
13
namespace ernadoo\qte\migrations\v200;
14
15
class dev extends \phpbb\db\migration\migration
16
{
17
	static public function depends_on()
18
	{
19
		return array(
20
			'\ernadoo\qte\migrations\v12x\v125',
21
			'\phpbb\db\migration\data\v310\gold',
22
			'\ernadoo\qte\migrations\v200\convert_old_modules',
23
		);
24
	}
25
26
	public function update_data()
27
	{
28
		return array(
29
			array('config.update', array('qte_version', '2.0.0-dev')),
30
		);
31
	}
32
}
33