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 ( fe87e3...aa9b3c )
by Damian
16:15
created
web/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use Symfony\Component\HttpFoundation\Request;
4 4
 
5
-require __DIR__.'/../app/AppKernel.php';
5
+require __DIR__ . '/../app/AppKernel.php';
6 6
 
7 7
 $kernel = new AppKernel('dev', true);
8 8
 $request = Request::createFromGlobals();
Please login to merge, or discard this patch.
simpleClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,4 +26,4 @@
 block discarded – undo
26 26
 if (curl_errno($ch)) {
27 27
     echo 'Error:' . curl_error($ch);
28 28
 }
29
-curl_close ($ch);
29
+curl_close($ch);
Please login to merge, or discard this patch.
src/App/Controller/UploadController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
                 'status' => 'ok',
29 29
                 'files' => $newFiles
30 30
             ));
31
-        } catch(\Exception $e) {
31
+        } catch (\Exception $e) {
32 32
             return new JsonResponse(array(
33 33
                 'status' => 'error',
34 34
                 'message' => $e->getMessage()
Please login to merge, or discard this patch.
src/App/Controller/IndexController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
                 'status' => 'ok',
29 29
                 'files' => $newFiles
30 30
             ));
31
-        } catch(\Exception $e) {
31
+        } catch (\Exception $e) {
32 32
             return new JsonResponse(array(
33 33
                 'status' => 'error',
34 34
                 'message' => $e->getMessage()
Please login to merge, or discard this patch.
src/App/Uploader/FileUploader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $baseFilename = str_replace('.' . $file->getClientOriginalExtension(), null, $file->getClientOriginalName());
29 29
         $baseFilename = preg_replace("/[^a-zA-Z0-9_-]/", '', $baseFilename);
30 30
 
31
-        return $this->generateHash() . '-' .$baseFilename . '.' . $file->guessExtension();
31
+        return $this->generateHash() . '-' . $baseFilename . '.' . $file->guessExtension();
32 32
     }
33 33
 
34 34
     private function generateHash()
Please login to merge, or discard this patch.