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 ( de4288...07b53b )
by Joni
04:10
created
lib/X509/Certificate/CertificateChain.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	 */
37 37
 	public static function fromPEMs(PEM ...$pems) {
38 38
 		$certs = array_map(
39
-			function (PEM $pem) {
39
+			function(PEM $pem) {
40 40
 				return Certificate::fromPEM($pem);
41 41
 			}, $pems);
42 42
 		return new self(...$certs);
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 	public function toPEMString() {
107 107
 		return implode("\n", 
108 108
 			array_map(
109
-				function (Certificate $cert) {
109
+				function(Certificate $cert) {
110 110
 					return $cert->toPEM()->string();
111 111
 				}, $this->_certs));
112 112
 	}
Please login to merge, or discard this patch.