@@ -206,7 +206,7 @@ |
||
206 | 206 | |
207 | 207 | if ($workspace) { |
208 | 208 | // Placeholder are respect in function updateIndex |
209 | - $currentItems = array_filter($currentItems, static function ($item) { |
|
209 | + $currentItems = array_filter($currentItems, static function($item) { |
|
210 | 210 | return VersionState::DELETE_PLACEHOLDER !== ($item['t3ver_state'] ?? false); |
211 | 211 | }); |
212 | 212 | } |
@@ -98,7 +98,7 @@ |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | // @todo check |
101 | - $result = array_values(array_filter($result, static function ($item) { |
|
101 | + $result = array_values(array_filter($result, static function($item) { |
|
102 | 102 | return \is_array($item) && VersionState::DELETE_PLACEHOLDER !== ($item['t3ver_state'] ?? false); |
103 | 103 | })); |
104 | 104 |