Completed
Push — master ( 71957b...519609 )
by Joshua
16:17
created

DefaultMetadataLoader   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A loadMetadata() 0 4 1
1
<?php
2
3
namespace libphonenumber;
4
5
class DefaultMetadataLoader implements MetadataLoaderInterface
6
{
7
    public function loadMetadata($metadataFileName)
8
    {
9
        return include $metadataFileName;
10
    }
11
}
12