Total Complexity | 8 |
Total Lines | 54 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class PhpcsViolationsMapper implements MapperInterface |
||
6 | { |
||
7 | /** |
||
8 | * @var array |
||
9 | */ |
||
10 | protected $changedLinesPerFile; |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $currentDirectory; |
||
16 | |||
17 | /** |
||
18 | * @param array $changedLinesPerFile |
||
19 | * @param string $currentDirectory |
||
20 | */ |
||
21 | public function __construct(array $changedLinesPerFile, string $currentDirectory) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @param array $data |
||
29 | * @return array |
||
30 | */ |
||
31 | public function map(array $data): array |
||
61 |