Total Complexity | 2 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
10 | trait TFile |
||
11 | { |
||
12 | /** @var string[] */ |
||
13 | protected array $presetPath = []; |
||
14 | |||
15 | /** |
||
16 | * @param string[] $path |
||
17 | */ |
||
18 | 2 | protected function setPath(array $path): void |
|
19 | { |
||
20 | 2 | $this->presetPath = $path; |
|
21 | 2 | } |
|
22 | |||
23 | /** |
||
24 | * @return string[] |
||
25 | */ |
||
26 | 6 | protected function getPath(): array |
|
29 | } |
||
30 | } |
||
31 |