| 1 | <?php |
||
| 7 | class Finder |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param string $path |
||
| 11 | * @param array $includes |
||
| 12 | * @param array $excludes |
||
| 13 | * @return array |
||
| 14 | */ |
||
| 15 | public function find($path, array $includes, array $excludes = []) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @param string $path |
||
| 41 | * @param string $includes |
||
| 42 | * @param string $excludes |
||
| 43 | * @return array |
||
| 44 | */ |
||
| 45 | public function findFromString($path, $includes, $excludes) |
||
| 61 | } |
||
| 62 |