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 ( b21c26...dc2a23 )
by
unknown
21s queued 17s
created
src/LPTracker/LPTracker.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -164,13 +164,13 @@
 block discarded – undo
164 164
      */
165 165
     public function setProjectCallbackUrl($project, $callbackUrl)
166 166
     {
167
-        if($project instanceof Project) {
167
+        if ($project instanceof Project) {
168 168
             $project = $project->getId();
169 169
         } else {
170 170
             $project = intval($project);
171 171
         }
172 172
 
173
-        $url = '/project/' . $project . '/callback-url';
173
+        $url = '/project/'.$project.'/callback-url';
174 174
         LPTrackerRequest::sendRequest($url, ['url' => $callbackUrl], 'PUT', $this->token, $this->address);
175 175
     }
176 176
 
Please login to merge, or discard this patch.