@@ -178,7 +178,7 @@ |
||
| 178 | 178 | if (count($types)) { |
| 179 | 179 | return array_filter( |
| 180 | 180 | $this->items, |
| 181 | - function (ItemInterface $item) use ($types) { |
|
| 181 | + function(ItemInterface $item) use ($types) { |
|
| 182 | 182 | return $item->isOfType(...$types); |
| 183 | 183 | } |
| 184 | 184 | ); |
@@ -131,7 +131,7 @@ |
||
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | return array_map( |
| 134 | - function ($propertyValue) { |
|
| 134 | + function($propertyValue) { |
|
| 135 | 135 | return is_object($propertyValue) ? $this->__invoke($propertyValue) : $propertyValue; |
| 136 | 136 | }, |
| 137 | 137 | $propertyValues |