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.
Test Failed
Push — master ( 8bca22...568bf9 )
by Gabriel
13:02 queued 05:02
created
src/Payments/Gateways/Providers/AbstractGateway/Message/Views/confirm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
 
51 51
                 <p>
52 52
                     <?php
53
-                    echo $this->Messages()->$messageType($model->getManager()->getMessage('confirm.'.$model->status)); ?>
53
+                    echo $this->Messages()->$messageType($model->getManager()->getMessage('confirm.' . $model->status)); ?>
54 54
                 </p>
55 55
             <?php
56 56
 } else {
Please login to merge, or discard this patch.
Gateways/Providers/AbstractGateway/Message/CompletePurchaseResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     {
70 70
         if ($this->hasModel()) {
71 71
             //            return $this->getModel()->getConfirmStatusTitle();
72
-            return translator()->translate('payment-gateways.messages.confirm.'.$this->getMessageType().'.title');
72
+            return translator()->translate('payment-gateways.messages.confirm.' . $this->getMessageType() . '.title');
73 73
         } else {
74 74
             return 'Error confirming payment';
75 75
         }
Please login to merge, or discard this patch.
src/Payments/Gateways/Providers/Romcard/Gateway.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         $pClass->setData([
42 42
 //            'FIRST_NAME'	   => $donor->first_name,   // nume
43 43
 //            'LAST_NAME'	   => $donor->last_name,   // prenume
44
-            'EMAIL' => $donor->email,   // email
44
+            'EMAIL' => $donor->email, // email
45 45
         ]);
46 46
 
47 47
         $pClass->calculatePSIGN();
Please login to merge, or discard this patch.