GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 267903...da81a8 )
by Brett
32:31 queued 25:56
created
src/views/entry/panels/request/table.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             <?php foreach ($values as $name => $value): ?>
28 28
                 <tr>
29 29
                     <th><?= Html::encode($name) ?></th>
30
-                    <td><?= htmlspecialchars(VarDumper::dumpAsString($value), ENT_QUOTES | ENT_SUBSTITUTE,
30
+                    <td><?= htmlspecialchars(VarDumper::dumpAsString($value), ENT_QUOTES|ENT_SUBSTITUTE,
31 31
                             \Yii::$app->charset, true) ?></td>
32 32
                 </tr>
33 33
             <?php endforeach; ?>
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,8 @@  discard block
 block discarded – undo
12 12
 
13 13
     <p>Empty.</p>
14 14
 
15
-<?php else: ?>
15
+<?php else {
16
+    : ?>
16 17
 
17 18
     <div class="table-responsive">
18 19
         <table class="table table-condensed table-bordered table-striped table-hover request-table"
@@ -30,7 +31,9 @@  discard block
 block discarded – undo
30 31
                     <td><?= htmlspecialchars(VarDumper::dumpAsString($value), ENT_QUOTES | ENT_SUBSTITUTE,
31 32
                             \Yii::$app->charset, true) ?></td>
32 33
                 </tr>
33
-            <?php endforeach; ?>
34
+            <?php endforeach;
35
+}
36
+?>
34 37
             </tbody>
35 38
         </table>
36 39
     </div>
Please login to merge, or discard this patch.