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 ( 8ab036...090c02 )
by Rich
23:10 queued 21:01
created
src/Point.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
             if ($left == $right) {
183 183
                 return true;
184 184
             } else {
185
-                throw new \Exception('Point test failed! Cannot continue. I tested the point: ' . var_export($P, true) . ' but got the point: ' . var_export($test_point, true));
185
+                throw new \Exception('Point test failed! Cannot continue. I tested the point: '.var_export($P, true).' but got the point: '.var_export($test_point, true));
186 186
             }
187 187
 
188 188
         } catch (\Exception $e) {
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
             $Rx_hex = str_pad($this->encodeHex($R['x']), 64, "0", STR_PAD_LEFT);
274 274
             $Ry_hex = str_pad($this->encodeHex($R['y']), 64, "0", STR_PAD_LEFT);
275 275
         } else {
276
-            throw new \Exception('Point test failed! Cannot continue. I got the point: ' . var_export($R, true));
276
+            throw new \Exception('Point test failed! Cannot continue. I got the point: '.var_export($R, true));
277 277
         }
278 278
 
279 279
         return array(
Please login to merge, or discard this patch.