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 ( 8daf4e...a85bd7 )
by Rich
11s
created
src/Signature.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
             do {
130 130
                 /* Get the message hash and a new random number */
131
-                $e = $this->decodeHex('0x' . hash('sha256', $message));
131
+                $e = $this->decodeHex('0x'.hash('sha256', $message));
132 132
                 $k = $this->SecureRandomNumber();
133 133
 
134 134
                 /* Calculate a new curve point from R=k*G (x1,y1) */
@@ -248,14 +248,14 @@  discard block
 block discarded – undo
248 248
         $s = $this->binConv($this->CoordinateCheck($s));
249 249
 
250 250
         $retval = array(
251
-                        'bin_r' => $this->msbCheck($r[0]) . $r,
252
-                        'bin_s' => $this->msbCheck($s[0]) . $s
251
+                        'bin_r' => $this->msbCheck($r[0]).$r,
252
+                        'bin_s' => $this->msbCheck($s[0]).$s
253 253
                        );
254 254
 
255
-        $seq = chr(0x02) . chr(strlen($retval['bin_r'])) . $retval['bin_r'] .
256
-               chr(0x02) . chr(strlen($retval['bin_s'])) . $retval['bin_s'];
255
+        $seq = chr(0x02).chr(strlen($retval['bin_r'])).$retval['bin_r'].
256
+               chr(0x02).chr(strlen($retval['bin_s'])).$retval['bin_s'];
257 257
 
258
-        return bin2hex(chr(0x30) . chr(strlen($seq)) . $seq);
258
+        return bin2hex(chr(0x30).chr(strlen($seq)).$seq);
259 259
     }
260 260
 
261 261
     /**
Please login to merge, or discard this patch.