Completed
Push — master ( 380bc9...d6f30d )
by Jesse
02:30
created
src/Sorter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types=1);
2
+declare(strict_types = 1);
3 3
 
4 4
 namespace Stratadox\Sorting;
5 5
 
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
     private function functionFor(DefinesHowToSort $sorting): Closure
27 27
     {
28
-        return function ($element1, $element2) use ($sorting) {
28
+        return function($element1, $element2) use ($sorting) {
29 29
             return $this->doTheSorting($element1, $element2, $sorting);
30 30
         };
31 31
     }
Please login to merge, or discard this patch.