v210_rc2   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 14
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A depends_on() 0 4 1
A update_data() 0 6 1
1
<?php
2
/**
3
*
4
* @package Board3 Portal v2.1
5
* @copyright (c) 2015 Board3 Group ( www.board3.de )
6
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
7
*
8
*/
9
10
namespace board3\portal\migrations;
11
12
class v210_rc2 extends \phpbb\db\migration\migration
13
{
14
	static public function depends_on()
15
	{
16
		return array('\board3\portal\migrations\v210_rc1');
17
	}
18
19
	public function update_data()
20
	{
21
		return array(
22
			array('config.update', array('board3_portal_version', '2.1.0-rc2')),
23
		);
24
	}
25
}
26