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 ( a454d8...3504e2 )
by François
02:14
created
src/Http/Response.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -94,6 +94,9 @@
 block discarded – undo
94 94
         return $output;
95 95
     }
96 96
 
97
+    /**
98
+     * @param string $fileName
99
+     */
97 100
     public function setFile($fileName)
98 101
     {
99 102
         $this->addHeader('X-SENDFILE', $fileName);
Please login to merge, or discard this patch.
src/Controller.php 1 patch
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -34,10 +34,6 @@
 block discarded – undo
34 34
     private $auth = [];
35 35
 
36 36
     /**
37
-     * @param string $configFile
38
-     * @param string $storageRoot
39
-     * @param string $dbDsn
40
-     * @param array  $templateFolders
41 37
      */
42 38
     public function __construct($appDir, SessionInterface $session, RandomInterface $random, DateTime $dateTime)
43 39
     {
Please login to merge, or discard this patch.
src/DocumentStorage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -27,6 +27,9 @@
 block discarded – undo
27 27
 {
28 28
     private $baseDir;
29 29
 
30
+    /**
31
+     * @param string $baseDir
32
+     */
30 33
     public function __construct($baseDir)
31 34
     {
32 35
         // check if baseDir exists, if not, try to create it
Please login to merge, or discard this patch.