@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | $filters = array_udiff( |
37 | 37 | Filters::cases(), |
38 | 38 | $this->includeFilters, |
39 | - static function (Filters $a1, Filters $a2) { |
|
39 | + static function(Filters $a1, Filters $a2) { |
|
40 | 40 | return $a1->value <=> $a2->value; |
41 | 41 | }, |
42 | 42 | ); |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $filters = array_uintersect( |
45 | 45 | Filters::cases(), |
46 | 46 | $this->excludeFilters, |
47 | - static function (Filters $a1, Filters $a2) { |
|
47 | + static function(Filters $a1, Filters $a2) { |
|
48 | 48 | return $a1->value <=> $a2->value; |
49 | 49 | }, |
50 | 50 | ); |
@@ -99,7 +99,7 @@ |
||
99 | 99 | $mergedConfig = array_merge($default, $config); |
100 | 100 | |
101 | 101 | foreach ($mergedConfig as $field => $value) { |
102 | - if (! property_exists($this, $field)) { |
|
102 | + if (!property_exists($this, $field)) { |
|
103 | 103 | throw new InvalidArgumentException('Invalid configuration setting: ' . $field); |
104 | 104 | } |
105 | 105 |