@@ -1,4 +1,4 @@ discard block |
||
1 | -<?php declare(strict_types=1); |
|
1 | +<?php declare(strict_types = 1); |
|
2 | 2 | |
3 | 3 | namespace WyriHaximus\React\Http\Middleware; |
4 | 4 | |
@@ -23,7 +23,7 @@ discard block |
||
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) { |