Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class Files implements IEntriesSource |
||
23 | { |
||
24 | use TFilterHtml; |
||
25 | |||
26 | protected CompositeAdapter $files; |
||
27 | protected ArrayPath $arrPath; |
||
28 | |||
29 | 4 | public function __construct(CompositeAdapter $files) |
|
30 | { |
||
31 | 4 | $this->files = $files; |
|
32 | 4 | $this->arrPath = new ArrayPath(); |
|
33 | 4 | } |
|
34 | |||
35 | 3 | public function getFiles(array $path): Traversable |
|
52 | } |
||
53 | 2 | } |
|
55 |