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 ( e3850c...c33285 )
by Ransford
02:22
created
src/Expr.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     const COMMA = self::SPACES . ',' . self::SPACES;
10 10
     const PIPE = self::SPACES . '\|' . self::SPACES;
11 11
     const NUMBER = '(-?\d*\.?\d+)';
12
-    const NUMBER_OR_PERCENT = '('. self::NUMBER . '%?)'; //'((-?\d*\.?\d+)%?)';
12
+    const NUMBER_OR_PERCENT = '(' . self::NUMBER . '%?)'; //'((-?\d*\.?\d+)%?)';
13 13
     const PERCENT = self::NUMBER . '%';
14 14
     const POSITIVE_NUMBER = '(\d*\.?\d+)';
15 15
     const POSITIVE_NUMBER_OR_ASTERISK = '(\d*\.?\d+|\*)';
Please login to merge, or discard this patch.
src/Interpreter/PercentageBillInterpreter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             $amount = $context->getAmount();
44 44
 
45 45
             if (RangeHelper::isInRange($range, $amount)) {
46
-                $bill = ($matches[1] * $amount)/ 100.00;
46
+                $bill = ($matches[1] * $amount) / 100.00;
47 47
                 break;
48 48
             }
49 49
         }
Please login to merge, or discard this patch.
src/Interpreter/SteppedBillInterpreter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 
16 16
 final class SteppedBillInterpreter extends AbstractBillInterpreter
17 17
 {
18
-    private const EXPRESSION =  Expr::POSITIVE_NUMBER .
18
+    private const EXPRESSION = Expr::POSITIVE_NUMBER .
19 19
                                 Expr::COMMA .
20 20
                                 Expr::POSITIVE_NUMBER .
21 21
                                 '\+';
Please login to merge, or discard this patch.