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

functional_test   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A setup_extensions() 0 4 1
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