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 ( 7d6bb3...5017b9 )
by Rich
13s
created
src/ASN1.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,14 +62,14 @@  discard block
 block discarded – undo
62 62
                              'a1_ele_len'   => '44',
63 63
                              'bit_str_beg'  => '03',
64 64
                              'bit_str_len'  => '42',
65
-                             'bit_str_val'  => '00' . $keypair[1],
65
+                             'bit_str_val'  => '00'.$keypair[1],
66 66
                              );
67 67
 
68 68
         $dec = trim(implode($ecpemstruct));
69 69
 
70 70
         $this->pemDataLenCheck($dec);
71 71
 
72
-        return '-----BEGIN EC PRIVATE KEY-----' . "\r\n" . chunk_split(base64_encode($this->binConv($dec)), 64) . '-----END EC PRIVATE KEY-----';
72
+        return '-----BEGIN EC PRIVATE KEY-----'."\r\n".chunk_split(base64_encode($this->binConv($dec)), 64).'-----END EC PRIVATE KEY-----';
73 73
     }
74 74
 
75 75
     /**
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $this->pemOidCheck($ecpemstruct['obj_id_val']);
95 95
 
96 96
         $private_key = $ecpemstruct['oct_sec_val'];
97
-        $public_key  = '04' . $ecpemstruct['bit_str_val'];
97
+        $public_key  = '04'.$ecpemstruct['bit_str_val'];
98 98
 
99 99
         $this->pemKeyLenCheck(array($private_key, $public_key));
100 100
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         $oid_string = '';
220 220
 
221 221
         foreach ($oid as $key => $value) {
222
-            $oid_string .= $value . ".";
222
+            $oid_string .= $value.".";
223 223
         }
224 224
 
225 225
         $oid_string = substr($oid_string, 0, -1);
Please login to merge, or discard this patch.