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 ( fb8c31...1a99dd )
by Danger
02:38
created
applications/workspace/test/Tests/PartTest.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,9 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Tests;
4 4
 
5
-use Silex\WebTestCase;
6
-use JsonSchema\Validator;
7
-
8 5
 class PartTest extends WorkspaceTest
9 6
 {
10 7
     use AbstractAppTest;
Please login to merge, or discard this patch.
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -61,12 +61,12 @@  discard block
 block discarded – undo
61 61
             "badges":[13,28]}';
62 62
 
63 63
         $client->request(
64
-          'POST',
65
-          '/api/v1/workspace/'.$id.'/part',
66
-          [],
67
-          [],
68
-          ['CONTENT_TYPE' => 'application/json'],
69
-          $part);
64
+            'POST',
65
+            '/api/v1/workspace/'.$id.'/part',
66
+            [],
67
+            [],
68
+            ['CONTENT_TYPE' => 'application/json'],
69
+            $part);
70 70
 
71 71
         $response = $client->getResponse();
72 72
 
@@ -107,12 +107,12 @@  discard block
 block discarded – undo
107 107
             "badges":[13,30]}';
108 108
 
109 109
         $client->request(
110
-          'PUT',
111
-          '/api/v1/workspace/'.$id.'/part/'.$part_id.'',
112
-          [],
113
-          [],
114
-          ['CONTENT_TYPE' => 'application/json'],
115
-          $part);
110
+            'PUT',
111
+            '/api/v1/workspace/'.$id.'/part/'.$part_id.'',
112
+            [],
113
+            [],
114
+            ['CONTENT_TYPE' => 'application/json'],
115
+            $part);
116 116
 
117 117
         $response = $client->getResponse();
118 118
         $data = $client->getResponse()->getContent();
@@ -131,12 +131,12 @@  discard block
 block discarded – undo
131 131
         $part_id = $this->testPostWorkspacePart();
132 132
 
133 133
         $client->request(
134
-          'DELETE',
135
-          '/api/v1/workspace/'.$id.'/part/'.$part_id.'',
136
-          [],
137
-          [],
138
-          [],
139
-          '');
134
+            'DELETE',
135
+            '/api/v1/workspace/'.$id.'/part/'.$part_id.'',
136
+            [],
137
+            [],
138
+            [],
139
+            '');
140 140
 
141 141
         $response = $client->getResponse();
142 142
         $this->assertTrue($response->isOk());
Please login to merge, or discard this patch.