@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | if (!empty($variableNames)) { |
| 172 | 172 | $aspects = array_filter( |
| 173 | 173 | $this->aspects, |
| 174 | - function (string $variableName) use ($variableNames) { |
|
| 174 | + function(string $variableName) use ($variableNames) { |
|
| 175 | 175 | return in_array($variableName, $variableNames, true); |
| 176 | 176 | }, |
| 177 | 177 | ARRAY_FILTER_USE_KEY |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | } |
| 180 | 180 | return array_filter( |
| 181 | 181 | $aspects, |
| 182 | - function (AspectInterface $aspect) use ($classNames) { |
|
| 182 | + function(AspectInterface $aspect) use ($classNames) { |
|
| 183 | 183 | $uses = class_uses($aspect) ?: []; |
| 184 | 184 | foreach ($classNames as $className) { |
| 185 | 185 | if (!is_a($aspect, $className) |