Passed
Push — master ( 07bfbc...793fc1 )
by
unknown
16:59
created
typo3/sysext/backend/Classes/Form/FieldWizard/SelectIcons.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -60,18 +60,18 @@
 block discarded – undo
60 60
         $html = [];
61 61
         if (!empty($selectIcons)) {
62 62
             $html[] = '<div class="t3js-forms-select-single-icons icon-list">';
63
-            $html[] =    '<div class="row">';
63
+            $html[] = '<div class="row">';
64 64
             foreach ($selectIcons as $i => $selectIcon) {
65
-                $active = $selectIcon['active'] ?  ' active' : '';
66
-                $html[] =   '<div class="col col-auto item' . $active . '">';
65
+                $active = $selectIcon['active'] ? ' active' : '';
66
+                $html[] = '<div class="col col-auto item' . $active . '">';
67 67
                 if (is_array($selectIcon)) {
68 68
                     $html[] = '<a href="#" title="' . htmlspecialchars($selectIcon['title'], ENT_COMPAT, 'UTF-8', false) . '" data-select-index="' . htmlspecialchars((string)$selectIcon['index']) . '">';
69
-                    $html[] =   $selectIcon['icon'];
69
+                    $html[] = $selectIcon['icon'];
70 70
                     $html[] = '</a>';
71 71
                 }
72
-                $html[] =   '</div>';
72
+                $html[] = '</div>';
73 73
             }
74
-            $html[] =    '</div>';
74
+            $html[] = '</div>';
75 75
             $html[] = '</div>';
76 76
         }
77 77
 
Please login to merge, or discard this patch.