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 ( b76406...327a01 )
by Nur
02:55
created
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.
src/Views/Toolbar.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -195,11 +195,14 @@
 block discarded – undo
195 195
                                         <td style="padding: 5px;"><?=$query->getExecutionDuration();?></td>
196 196
                                     </tr>
197 197
                                 <?php endforeach; ?>
198
-                            <?php else: ?>
198
+                            <?php else {
199
+    : ?>
199 200
 		                        <tr style="border-bottom: 1px solid #ebebeb;">
200 201
                                     <th colspan="4" style="padding: 5px; color: #ccc;">No queries are executed!</th>
201 202
                                 </tr>
202
-                            <?php endif; ?>
203
+                            <?php endif;
204
+}
205
+?>
203 206
                         <?php endforeach; ?>
204 207
                         </tbody>
205 208
                         <tfoot>
Please login to merge, or discard this patch.