Test Setup Failed
Branch master (bd9389)
by Herberto
03:28
created
src/ArrayHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $steps  = explode('.', $path);
38 38
         $actual = $data;
39 39
         foreach ($steps as $step) {
40
-            if (! array_key_exists($step, $actual)) {
40
+            if (!array_key_exists($step, $actual)) {
41 41
                 return null;
42 42
             }
43 43
 
Please login to merge, or discard this patch.
src/ClassHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -136,10 +136,10 @@
 block discarded – undo
136 136
     ): bool
137 137
     {
138 138
         return in_array($reflectionProperty->getName(), $excludedNames) ||
139
-        (! $excludedVisibility['public'] && $reflectionProperty->isPublic()) ||
140
-        (! $excludedVisibility['protected'] && $reflectionProperty->isProtected()) ||
141
-        (! $excludedVisibility['private'] && $reflectionProperty->isPrivate()) ||
142
-        (! $excludedVisibility['static'] && $reflectionProperty->isStatic());
139
+        (!$excludedVisibility['public'] && $reflectionProperty->isPublic()) ||
140
+        (!$excludedVisibility['protected'] && $reflectionProperty->isProtected()) ||
141
+        (!$excludedVisibility['private'] && $reflectionProperty->isPrivate()) ||
142
+        (!$excludedVisibility['static'] && $reflectionProperty->isStatic());
143 143
     }
144 144
 
145 145
     /**
Please login to merge, or discard this patch.