1 | <?php declare(strict_types = 1); |
||
8 | class FileManager |
||
9 | { |
||
10 | /** |
||
11 | * Recursively finds all files with the .php extension in the provided |
||
12 | * $path and returns list as array. |
||
13 | * @param string $path Path to look for .php files. |
||
14 | * @return array |
||
15 | */ |
||
16 | public function getPhpFiles(string $path): array |
||
28 | } |
||
29 |