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 ( b59d79...3801f0 )
by Anton
11:39
created
src/Command/BlackjackCommand.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -90,8 +90,12 @@
 block discarded – undo
90 90
         $this->print("You have <info>$</info><info>$money</info>.");
91 91
         if ($money > 0) {
92 92
             $bet = (int)$io->ask('Your bet', '5');
93
-            if ($bet <= 0) goto start;
94
-            if ($bet > $money) goto start;
93
+            if ($bet <= 0) {
94
+                goto start;
95
+            }
96
+            if ($bet > $money) {
97
+                goto start;
98
+            }
95 99
         } else if ($hasWatch) {
96 100
             $answer = $io->askQuestion(new ChoiceQuestion('?', ['leave', '- Here, take my watch! [$25]'], 0));
97 101
             if ($answer == 'leave') {
Please login to merge, or discard this patch.
contrib/sentry.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -257,8 +257,7 @@
 block discarded – undo
257 257
         try {
258 258
             if (get('update_code_strategy') === 'archive') {
259 259
                 cd('{{deploy_path}}/.dep/repo');
260
-            }
261
-            else {
260
+            } else {
262 261
                 cd('{{release_path}}');
263 262
             }
264 263
 
Please login to merge, or discard this patch.