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 ( c07b11...b289ea )
by Toby
27:25 queued 11s
created
src/Export/Handler/Airtable/AirtableHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $creating = [];
24 24
         
25
-        foreach($items as $item) {
25
+        foreach ($items as $item) {
26 26
             $creating[] = [
27 27
                 'fields' => $item->toArray()
28 28
             ];
Please login to merge, or discard this patch.
src/Export/Handler/Airtable/DeleteRows.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
             [
46 46
                 'query' => $this->data,
47 47
                 'headers' => [
48
-                    'Authorization' => 'Bearer ' . $this->apiKey
48
+                    'Authorization' => 'Bearer '.$this->apiKey
49 49
                 ]
50 50
             ]
51 51
         );
Please login to merge, or discard this patch.
src/Export/Handler/Airtable/CreateRows.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
             [
46 46
                 'json' => $this->data,
47 47
                 'headers' => [
48
-                    'Authorization' => 'Bearer ' . $this->apiKey
48
+                    'Authorization' => 'Bearer '.$this->apiKey
49 49
                 ]
50 50
             ]
51 51
         );
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
         ]);
58 58
         
59 59
         $records = json_decode($response->getBody()->getContents(), true);
60
-        foreach($records['records'] as $record) {
60
+        foreach ($records['records'] as $record) {
61 61
             $idRetriver->pushId($record['id']);
62 62
         }
63 63
     }
Please login to merge, or discard this patch.
src/Export/Handler/Airtable/IdRetriever.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     public function saveIds($ids)
39 39
     {
40
-        if($ids instanceof Collection) {
40
+        if ($ids instanceof Collection) {
41 41
             $ids = $ids->toArray();
42 42
         }
43 43
         $this->cache->forever($this->key(), $ids);
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
     private function key()
60 60
     {
61
-        return static::class . ':' . $this->baseId . ':' . $this->tableName;
61
+        return static::class.':'.$this->baseId.':'.$this->tableName;
62 62
     }
63 63
 
64 64
 }
65 65
\ No newline at end of file
Please login to merge, or discard this patch.