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 ( 994736...366350 )
by François
08:25 queued 05:01
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/Http/Service.php 1 patch
Doc Comments   +18 added lines patch added patch discarded remove patch
@@ -57,31 +57,49 @@
 block discarded – undo
57 57
         $this->afterHooks[$name] = $afterHook;
58 58
     }
59 59
 
60
+    /**
61
+     * @param string $requestMethod
62
+     */
60 63
     public function addRoute($requestMethod, $pathInfo, callable $callback)
61 64
     {
62 65
         $this->routes[$requestMethod][$pathInfo] = $callback;
63 66
     }
64 67
 
68
+    /**
69
+     * @param string $pathInfo
70
+     */
65 71
     public function get($pathInfo, callable $callback)
66 72
     {
67 73
         $this->addRoute('GET', $pathInfo, $callback);
68 74
     }
69 75
 
76
+    /**
77
+     * @param string $pathInfo
78
+     */
70 79
     public function post($pathInfo, callable $callback)
71 80
     {
72 81
         $this->addRoute('POST', $pathInfo, $callback);
73 82
     }
74 83
 
84
+    /**
85
+     * @param string $pathInfo
86
+     */
75 87
     public function put($pathInfo, callable $callback)
76 88
     {
77 89
         $this->addRoute('PUT', $pathInfo, $callback);
78 90
     }
79 91
 
92
+    /**
93
+     * @param string $pathInfo
94
+     */
80 95
     public function delete($pathInfo, callable $callback)
81 96
     {
82 97
         $this->addRoute('DELETE', $pathInfo, $callback);
83 98
     }
84 99
 
100
+    /**
101
+     * @param string $pathInfo
102
+     */
85 103
     public function options($pathInfo, callable $callback)
86 104
     {
87 105
         $this->addRoute('OPTIONS', $pathInfo, $callback);
Please login to merge, or discard this patch.