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 ( b1c8ca...32e807 )
by Martin
09:06
created
src/Model/Version.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -215,6 +215,9 @@
 block discarded – undo
215 215
         $this->complete = $version;
216 216
     }
217 217
 
218
+    /**
219
+     * @param null|string $complete
220
+     */
218 221
     private function hydrateFromComplete($complete)
219 222
     {
220 223
         $parts = $this->getCompleteParts($complete);
Please login to merge, or discard this patch.
src/Provider/AbstractProvider.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -254,6 +254,10 @@
 block discarded – undo
254 254
         return true;
255 255
     }
256 256
 
257
+    /**
258
+     * @param string $group
259
+     * @param string $part
260
+     */
257 261
     protected function getRealResult($value, $group = null, $part = null)
258 262
     {
259 263
         if ($this->isRealResult($value, $group, $part) === true) {
Please login to merge, or discard this patch.
src/Provider/Http/DeviceAtlasCom.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,6 +73,9 @@  discard block
 block discarded – undo
73 73
         $this->apiKey = $apiKey;
74 74
     }
75 75
 
76
+    /**
77
+     * @param string $userAgent
78
+     */
76 79
     protected function getResult($userAgent, array $headers)
77 80
     {
78 81
         /*
@@ -182,7 +185,7 @@  discard block
 block discarded – undo
182 185
 
183 186
     /**
184 187
      *
185
-     * @param Model\UserAgent $device
188
+     * @param Model\Device $device
186 189
      * @param stdClass        $resultRaw
187 190
      */
188 191
     private function hydrateDevice(Model\Device $device, stdClass $resultRaw)
Please login to merge, or discard this patch.