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 ( 226eab...938d18 )
by Rich
16s
created
src/Point.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
                 return true;
189 189
             }
190 190
 
191
-            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));
191
+            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));
192 192
 
193 193
         } catch (\Exception $e) {
194 194
             // TODO: Do something useful here...
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
             $Rx_hex = str_pad($this->encodeHex($R['x']), 64, "0", STR_PAD_LEFT);
280 280
             $Ry_hex = str_pad($this->encodeHex($R['y']), 64, "0", STR_PAD_LEFT);
281 281
         } else {
282
-            throw new \Exception('Point test failed! Cannot continue. I got the point: ' . var_export($R, true));
282
+            throw new \Exception('Point test failed! Cannot continue. I got the point: '.var_export($R, true));
283 283
         }
284 284
 
285 285
         return array(
Please login to merge, or discard this patch.