Completed
Push — master ( df58f2...bfcb35 )
by Andreas
03:05
created
src/Util/FileSorter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
             E_USER_DEPRECATED
41 41
         );
42 42
 
43
-        $this->naturalSorter = function (SplFileInfo $a, SplFileInfo $b) {
43
+        $this->naturalSorter = function(SplFileInfo $a, SplFileInfo $b) {
44 44
             return strnatcasecmp($a->getRealPath(), $b->getRealPath());
45 45
         };
46 46
     }
Please login to merge, or discard this patch.
src/Util/NaturalFileSorter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     public function __construct()
32 32
     {
33
-        $naturalSorter = function (SplFileInfo $a, SplFileInfo $b) {
33
+        $naturalSorter = function(SplFileInfo $a, SplFileInfo $b) {
34 34
             return strnatcasecmp($a->getRealPath(), $b->getRealPath());
35 35
         };
36 36
 
Please login to merge, or discard this patch.