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