Passed
Push — master ( 72e0fa...2cc09d )
by
unknown
14:25
created
typo3/sysext/core/Classes/Utility/GeneralUtility.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -994,7 +994,7 @@
 block discarded – undo
994 994
         $result = explode($delim, $string) ?: [];
995 995
         if ($removeEmptyValues) {
996 996
             // Remove items that are just whitespace, but leave whitespace intact for the rest.
997
-            $result = array_values(array_filter($result, fn ($item) => trim($item) !== ''));
997
+            $result = array_values(array_filter($result, fn($item) => trim($item) !== ''));
998 998
         }
999 999
 
1000 1000
         if ($limit === 0) {
Please login to merge, or discard this patch.