Passed
Push — master ( 477c3d...43cf80 )
by Paul
05:05
created
views/panels/console.php 2 patches
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@  discard block
 block discarded – undo
1
-<?php defined('WPINC') || die; ?>
1
+<?php defined( 'WPINC' ) || die; ?>
2 2
 
3
-<?php if (!$console->hasEntries()) : ?>
3
+<?php if( !$console->hasEntries() ) : ?>
4 4
     <div>
5 5
         <table>
6 6
             <tbody>
7 7
                 <tr>
8
-                    <td><?= esc_html__('No entries found.', 'blackbar'); ?></td>
8
+                    <td><?= esc_html__( 'No entries found.', 'blackbar' ); ?></td>
9 9
                 </tr>
10 10
             </tbody>
11 11
         </table>
@@ -14,13 +14,13 @@  discard block
 block discarded – undo
14 14
     <div>
15 15
         <table class="glbb-grid">
16 16
             <tbody>
17
-                <?php foreach ($console->entries() as $entry) : ?>
18
-                    <tr data-errname="<?= esc_attr__($entry['errname']); ?>">
17
+                <?php foreach( $console->entries() as $entry ) : ?>
18
+                    <tr data-errname="<?= esc_attr__( $entry[ 'errname' ] ); ?>">
19 19
                         <td>
20
-                            <span class="glbb-info glbb-<?= $entry['errname']; ?>"><?= esc_html($entry['name']); ?></span>
20
+                            <span class="glbb-info glbb-<?= $entry[ 'errname' ]; ?>"><?= esc_html( $entry[ 'name' ] ); ?></span>
21 21
                         </td>
22 22
                         <td>
23
-                            <pre><code><?= esc_html($entry['message']); ?></code></pre>
23
+                            <pre><code><?= esc_html( $entry[ 'message' ] ); ?></code></pre>
24 24
                         </td>
25 25
                     </tr>
26 26
                 <?php endforeach; ?>
@@ -28,12 +28,12 @@  discard block
 block discarded – undo
28 28
         </table>
29 29
     </div>
30 30
     <form>
31
-        <label><input type="checkbox" value="debug"> <?= esc_html__('Debug', 'blackbar'); ?></label>
32
-        <label><input type="checkbox" value="info"> <?= esc_html__('Info', 'blackbar'); ?></label>
33
-        <label><input type="checkbox" value="deprecated"> <?= esc_html__('Deprecated', 'blackbar'); ?></label>
34
-        <label><input type="checkbox" value="notice"> <?= esc_html__('Notice', 'blackbar'); ?></label>
35
-        <label><input type="checkbox" value="strict"> <?= esc_html__('Strict', 'blackbar'); ?></label>
36
-        <label><input type="checkbox" value="warning"> <?= esc_html__('Warning', 'blackbar'); ?></label>
37
-        <label><input type="checkbox" value="error"> <?= esc_html__('Error', 'blackbar'); ?></label>
31
+        <label><input type="checkbox" value="debug"> <?= esc_html__( 'Debug', 'blackbar' ); ?></label>
32
+        <label><input type="checkbox" value="info"> <?= esc_html__( 'Info', 'blackbar' ); ?></label>
33
+        <label><input type="checkbox" value="deprecated"> <?= esc_html__( 'Deprecated', 'blackbar' ); ?></label>
34
+        <label><input type="checkbox" value="notice"> <?= esc_html__( 'Notice', 'blackbar' ); ?></label>
35
+        <label><input type="checkbox" value="strict"> <?= esc_html__( 'Strict', 'blackbar' ); ?></label>
36
+        <label><input type="checkbox" value="warning"> <?= esc_html__( 'Warning', 'blackbar' ); ?></label>
37
+        <label><input type="checkbox" value="error"> <?= esc_html__( 'Error', 'blackbar' ); ?></label>
38 38
     </form>
39 39
 <?php endif; ?>
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,12 +10,15 @@
 block discarded – undo
10 10
             </tbody>
11 11
         </table>
12 12
     </div>
13
-<?php else : ?>
13
+<?php else {
14
+	: ?>
14 15
     <div>
15 16
         <table class="glbb-grid">
16 17
             <tbody>
17 18
                 <?php foreach ($console->entries() as $entry) : ?>
18
-                    <tr data-errname="<?= esc_attr__($entry['errname']); ?>">
19
+                    <tr data-errname="<?= esc_attr__($entry['errname']);
20
+}
21
+?>">
19 22
                         <td>
20 23
                             <span class="glbb-info glbb-<?= $entry['errname']; ?>"><?= esc_html($entry['name']); ?></span>
21 24
                         </td>
Please login to merge, or discard this patch.