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 (#99)
by Martin
07:44
created
src/Provider/Endorphin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@
 block discarded – undo
192 192
          * No result found?
193 193
          */
194 194
         if ($this->hasResult($resultRaw) !== true) {
195
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
195
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
196 196
         }
197 197
 
198 198
         /*
Please login to merge, or discard this patch.
src/Provider/PiwikDeviceDetector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
          * No result found?
296 296
          */
297 297
         if ($this->hasResult($dd) !== true) {
298
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
298
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
299 299
         }
300 300
 
301 301
         /*
Please login to merge, or discard this patch.
src/Provider/JenssegersAgent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@
 block discarded – undo
207 207
          * No result found?
208 208
          */
209 209
         if ($this->hasResult($resultCache) !== true) {
210
-            throw new NoResultFoundException('No result found for user agent: ' . $userAgent);
210
+            throw new NoResultFoundException('No result found for user agent: '.$userAgent);
211 211
         }
212 212
 
213 213
         /*
Please login to merge, or discard this patch.