@@ -37,7 +37,7 @@ |
||
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 |
@@ -136,10 +136,10 @@ |
||
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 | /** |