@@ -23,7 +23,7 @@ |
||
| 23 | 23 | $directory = new \RecursiveDirectoryIterator($webroot); |
| 24 | 24 | $directory = new \RecursiveIteratorIterator($directory); |
| 25 | 25 | $directory = iterator_to_array($directory); |
| 26 | - usort($directory, function ($a, $b) { |
|
| 26 | + usort($directory, function($a, $b) { |
|
| 27 | 27 | return $a->getPathname() <=> $b->getPathname(); |
| 28 | 28 | }); |
| 29 | 29 | foreach ($directory as $fileinfo) { |