Passed
Push — master ( b281b4...67e49f )
by Paul
02:57
created
views/panels/templates.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1
-<?php defined('WPINC') || exit; ?>
1
+<?php defined( 'WPINC' ) || exit; ?>
2 2
 
3 3
 <table class="glbb-grid">
4 4
     <tbody>
5
-        <?php foreach ($module->entries() as $index => $template) : ?>
5
+        <?php foreach( $module->entries() as $index => $template ) : ?>
6 6
             <tr>
7 7
                 <td>
8 8
                     <ol>
9
-                        <li value="<?= esc_attr($index + 1); ?>"><?= esc_html($template); ?></li>
9
+                        <li value="<?= esc_attr( $index + 1 ); ?>"><?= esc_html( $template ); ?></li>
10 10
                     </ol>
11 11
                 </td>
12 12
             </tr>
Please login to merge, or discard this patch.