Passed
Push — master ( 2ff838...9edfde )
by Magnar Ovedal
02:46
created
src/Rule/ChangeInterval.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     {
43 43
         $this->constraints[] = new DateInterval($min, $max, $weight);
44 44
 
45
-        StableSort::usort($this->constraints, function (DateInterval $a, DateInterval $b): int {
45
+        StableSort::usort($this->constraints, function(DateInterval $a, DateInterval $b): int {
46 46
             return $b->getWeight() <=> $a->getWeight();
47 47
         });
48 48
 
Please login to merge, or discard this patch.
src/Rule/ChangeDate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     {
43 43
         $this->constraints[] = new Date($min, $max, $weight);
44 44
 
45
-        StableSort::usort($this->constraints, function (Date $a, Date $b): int {
45
+        StableSort::usort($this->constraints, function(Date $a, Date $b): int {
46 46
             return $b->getWeight() <=> $a->getWeight();
47 47
         });
48 48
 
Please login to merge, or discard this patch.