Completed
Push — master ( 6cfe9f...d6cbe8 )
by Paul
13s queued 10s
created

version_005::depends_on()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 8
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 *
4
 * 2FA extension for the phpBB Forum Software package.
5
 *
6
 * @copyright (c) 2015 Paul Sohier
7
 * @license GNU General Public License, version 2 (GPL-2.0)
8
 *
9
 */
10
11
namespace paul999\tfa\migrations;
12
13
class version_005 extends \phpbb\db\migration\migration
14
{
15
	static public function depends_on()
16
	{
17
		return array(
18
			'\paul999\tfa\migrations\version_004',
19
			'\paul999\tfa\migrations\add_config',
20
			'\paul999\tfa\migrations\initial_version_interface',
21
		);
22
	}
23
}
24