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 ( d8327a...c6d836 )
by Andreas
03:23
created
MessageQueue/Contact/CreateUpdateMessageBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
      */
57 57
     public function buildWithSubscriber(ContactInterface $contact, Subscriber $subscriber): CreateUpdateMessage
58 58
     {
59
-        $request =  [
59
+        $request = [
60 60
             'email' => $subscriber->getEmail()
61 61
         ];
62 62
 
Please login to merge, or discard this patch.
Block/Adminhtml/Contact/ImportButton.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,9 +35,9 @@
 block discarded – undo
35 35
         return [
36 36
             'label' => __('Import Contacts'),
37 37
             'class' => 'primary',
38
-            'on_click' => 'deleteConfirm(\'' . __(
38
+            'on_click' => 'deleteConfirm(\''.__(
39 39
                     'Are you sure you want to do this?'
40
-                ) . '\', \'' . $this->getImportUrl() . '\', {"data": {}})',
40
+                ).'\', \''.$this->getImportUrl().'\', {"data": {}})',
41 41
         ];
42 42
     }
43 43
 
Please login to merge, or discard this patch.
MessageQueue/Contact/ImportConsumer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
77 77
             return;
78 78
         }
79 79
 
80
-        $contacts = array_map(function (array $item) {
80
+        $contacts = array_map(function(array $item) {
81 81
             return [
82 82
                 ContactInterface::EMAIL => $item['email'],
83 83
                 ContactInterface::ACTIVE_CAMPAIGN_ID => $item['id']
Please login to merge, or discard this patch.