Passed
Pull Request — 12.0.x (#129)
by Tom
02:12
created
src/Attribute/ExcludeFilters.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
             );
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.