| 1 | <?php |
||
| 24 | class MetadataFinder implements FileFinderInterface |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @var ArrayFilterInterface |
||
| 28 | */ |
||
| 29 | private $filter; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param ArrayFilterInterface $filter |
||
| 33 | */ |
||
| 34 | 4 | public function __construct(ArrayFilterInterface $filter) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * @param FileNodeCollectionInterface $files |
||
| 41 | * |
||
| 42 | * @return CollectionInterface |
||
| 43 | */ |
||
| 44 | public function findFiles(FileNodeCollectionInterface $files) |
||
| 55 | } |
||
| 56 |