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
Pull Request — master (#117)
by Walt
05:34
created
src/Provider/UAParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -199,7 +199,7 @@
 block discarded – undo
199 199
          * No result found?
200 200
          */
201 201
         if ($this->hasResult($resultRaw) !== true) {
202
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
202
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
203 203
         }
204 204
 
205 205
         /*
Please login to merge, or discard this patch.
src/Provider/HandsetDetection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -195,14 +195,14 @@
 block discarded – undo
195 195
                 throw new InvalidArgumentException('You need to warm-up the cache first to use this provider');
196 196
             }
197 197
 
198
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
198
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
199 199
         }
200 200
 
201 201
         /*
202 202
          * No result found?
203 203
          */
204
-        if (! isset($resultRaw['hd_specs']) || $this->hasResult($resultRaw['hd_specs']) !== true) {
205
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
204
+        if (!isset($resultRaw['hd_specs']) || $this->hasResult($resultRaw['hd_specs']) !== true) {
205
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
206 206
         }
207 207
 
208 208
         /*
Please login to merge, or discard this patch.