1 | <?php |
||
11 | class CustomFileFinder implements FileFinderInterface { |
||
12 | |||
13 | /** |
||
14 | * @var Finder |
||
15 | */ |
||
16 | private $finder; |
||
17 | |||
18 | |||
19 | /** |
||
20 | * @param Finder $finder |
||
21 | */ |
||
22 | public function __construct(Finder $finder) { |
||
25 | |||
26 | |||
27 | /** |
||
28 | * @return FileInfoCollection |
||
29 | */ |
||
30 | public function getFileCollection() { |
||
41 | |||
42 | } |