@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 | } |