Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
5 | final class ResultProcessedFileReadOnly implements ResultProcessedFileInterface |
||
6 | { |
||
7 | /** @var string */ |
||
8 | private $file; |
||
9 | |||
10 | /** @var array<ErrorResult> */ |
||
11 | private $conflicts = []; |
||
12 | |||
13 | public function __construct(string $file) |
||
14 | { |
||
15 | $this->file = $file; |
||
16 | } |
||
17 | |||
18 | public function getFileName(): String |
||
21 | } |
||
22 | |||
23 | /** @return array<ErrorResult> */ |
||
24 | public function getConflicts(): array |
||
27 | } |
||
28 | } |
||
29 |