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.
Completed
Push — master ( 3a3beb...943a46 )
by Ransford
04:49 queued 11s
created
src/Interpreter/SteppedBillInterpreter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
  */
25 25
 final class SteppedBillInterpreter extends AbstractBillInterpreter
26 26
 {
27
-    private const EXPRESSION =  Expr::POSITIVE_NUMBER .
27
+    private const EXPRESSION = Expr::POSITIVE_NUMBER .
28 28
                                 Expr::COMMA .
29 29
                                 Expr::POSITIVE_NUMBER .
30 30
                                 '\+';
Please login to merge, or discard this patch.
src/Interpreter/FlatRateBillInterpreter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
     use RangeValidityCheck;
24 24
 
25 25
     private const EXPRESSION = Expr::POSITIVE_NUMBER .
26
-                               Expr::COMMA .
27
-                               Expr::RANGE;
26
+                                Expr::COMMA .
27
+                                Expr::RANGE;
28 28
 
29 29
     public function __construct()
30 30
     {
Please login to merge, or discard this patch.
src/Interpreter/PercentageBillInterpreter.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
     use RangeValidityCheck;
24 24
 
25 25
     private const EXPRESSION = Expr::PERCENT .
26
-                               Expr::COMMA .
27
-                               Expr::RANGE;
26
+                                Expr::COMMA .
27
+                                Expr::RANGE;
28 28
 
29 29
     public function __construct()
30 30
     {
Please login to merge, or discard this patch.