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
Branch master (1c6b84)
by O2System
03:21
created
src/Views/Toolbar.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -186,11 +186,14 @@
 block discarded – undo
186 186
                                         <td style="padding: 5px;"><?= $query->getExecutionDuration(); ?></td>
187 187
                                     </tr>
188 188
                                 <?php endforeach; ?>
189
-                            <?php else: ?>
189
+                            <?php else {
190
+    : ?>
190 191
                                 <tr style="border-bottom: 1px solid #ebebeb;">
191 192
                                     <th colspan="4" style="padding: 5px; color: #ccc;">No queries are executed!</th>
192 193
                                 </tr>
193
-                            <?php endif; ?>
194
+                            <?php endif;
195
+}
196
+?>
194 197
                         <?php endforeach; ?>
195 198
                         </tbody>
196 199
                         <tfoot>
Please login to merge, or discard this patch.
src/Views/UnitTesting.php 1 patch
Braces   +15 added lines, -6 removed lines patch added patch discarded remove patch
@@ -29,8 +29,11 @@  discard block
 block discarded – undo
29 29
                         <pre>
30 30
                             <?php echo print_r($report->result, true); ?>
31 31
                         </pre>
32
-                    <?php else: ?>
33
-                        <?php echo $report->result; ?>
32
+                    <?php else {
33
+    : ?>
34
+                        <?php echo $report->result;
35
+}
36
+?>
34 37
                     <?php endif; ?>
35 38
                 </td>
36 39
                 <td width="5">
@@ -41,8 +44,11 @@  discard block
 block discarded – undo
41 44
                         <pre>
42 45
                             <?php echo print_r($report->expected, true); ?>
43 46
                         </pre>
44
-                    <?php else: ?>
45
-                        <?php echo $report->expected; ?>
47
+                    <?php else {
48
+    : ?>
49
+                        <?php echo $report->expected;
50
+}
51
+?>
46 52
                     <?php endif; ?>
47 53
                 </td>
48 54
                 <td width="5">
@@ -51,9 +57,12 @@  discard block
 block discarded – undo
51 57
                 <td width="5">
52 58
                     <?php if ($report->status === 'passed'): ?>
53 59
                         <span class="label label-success">Passed</span>
54
-                    <?php else: ?>
60
+                    <?php else {
61
+    : ?>
55 62
                         <span class="label label-danger">Failed</span>
56
-                    <?php endif; ?>
63
+                    <?php endif;
64
+}
65
+?>
57 66
                 </td>
58 67
                 <td width="10">
59 68
                     <i class="text-muted"><?php echo $report->trace->file; ?>:<?php echo $report->trace->line; ?></i>
Please login to merge, or discard this patch.