Completed
Push — master ( 19dece...05a825 )
by Tobias
04:22
created

functional_test::setup_extensions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace tas2580\seourls\tests\base;
4
abstract class functional_test extends \phpbb_functional_test_case
5
{
6
	static protected function setup_extensions()
0 ignored issues
show
Coding Style introduced by
As per PSR2, the static declaration should come after the visibility declaration.
Loading history...
7
	{
8
		return array('tas2580/seourls');
9
	}
10
}
11