Completed
Push — master ( 269a50...019c60 )
by Tobias
04:32
created

SourceLocationContainer   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 10
rs 10
1
<?php
2
3
namespace Translation\Extractor\Tests\Resources\Php;
4
5
use Translation\Extractor\Model\SourceLocation;
6
use Translation\Extractor\TranslationSourceLocationContainer;
7
8
class SourceLocationContainer implements TranslationSourceLocationContainer
9
{
10
    public static function getTranslationSourceLocations()
11
    {
12
        return [
13
            SourceLocation::createHere('foo'),
14
            SourceLocation::createHere('bar'),
15
        ];
16
    }
17
}
18