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 ( 948ccc...0fb96e )
by Damian
10:42 queued 33s
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/Uploader/FileUploader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,6 +30,6 @@
 block discarded – undo
30 30
         $baseFilename = str_replace('.' . $file->getClientOriginalExtension(), null, $file->getClientOriginalName());
31 31
         $baseFilename = preg_replace("/[^a-zA-Z0-9_-]/", '', $baseFilename);
32 32
 
33
-        return $fileNumber . '-' .$baseFilename . '.' . $file->guessExtension();
33
+        return $fileNumber . '-' . $baseFilename . '.' . $file->guessExtension();
34 34
     }
35 35
 }
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/Manager/FileCollectionManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
      */
108 108
     private function generateName()
109 109
     {
110
-        return md5(time() . rand(1000,9999) . 'salt');
110
+        return md5(time() . rand(1000, 9999) . 'salt');
111 111
     }
112 112
 
113 113
     /**
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.