Completed
Pull Request — master (#421)
by personal
01:32
created
templates/html_report/index.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -183,10 +183,13 @@
 block discarded – undo
183 183
                             usort($packages, function ($a, $b) {
184 184
                                 return strcmp($a->name, $b->name);
185 185
                             });
186
-                            foreach ($packages as $package) if( !preg_match('!(^php$|^ext\-)!', $package->name)) { ?>
186
+                            foreach ($packages as $package) {
187
+                                if( !preg_match('!(^php$|^ext\-)!', $package->name)) { ?>
187 188
                                 <tr>
188 189
                                     <td>
189
-                                        <a target="_blank" href="https://packagist.org/packages/<?php echo $package->name; ?>">
190
+                                        <a target="_blank" href="https://packagist.org/packages/<?php echo $package->name;
191
+                            }
192
+                            ?>">
190 193
                                             <?php echo $package->name; ?>
191 194
                                         </a>
192 195
                                     </td>
Please login to merge, or discard this patch.