PhpArrayImportation   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A load() 0 2 1
1
<?php
2
namespace Ubiquity\translation\import;
3
4
class PhpArrayImportation extends AbstractImportation {
5
6
	public function load() {
7
		return include $this->file;
8
	}
9
}
10
11