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/Provider/HandsetDetection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
          * No result found?
188 188
          */
189 189
         if ($parser->deviceDetect($headers) !== true) {
190
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
190
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
191 191
         }
192 192
 
193 193
         $resultRaw = $parser->getReply();
@@ -195,8 +195,8 @@  discard block
 block discarded – undo
195 195
         /*
196 196
          * No result found?
197 197
          */
198
-        if (! isset($resultRaw['hd_specs']) || $this->hasResult($resultRaw['hd_specs']) !== true) {
199
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
198
+        if (!isset($resultRaw['hd_specs']) || $this->hasResult($resultRaw['hd_specs']) !== true) {
199
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
200 200
         }
201 201
 
202 202
         /*
Please login to merge, or discard this patch.