@@ -42,7 +42,7 @@ |
||
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 |