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 ( 72e644...ec3172 )
by Joni
04:45
created
lib/X509/Certificate/Extension/TargetInformationExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 	 */
75 75
 	protected static function _fromDER($data, $critical) {
76 76
 		$targets = array_map(
77
-			function (UnspecifiedType $el) {
77
+			function(UnspecifiedType $el) {
78 78
 				return Targets::fromASN1($el->asSequence());
79 79
 			}, Sequence::fromDER($data)->elements());
80 80
 		return new self($critical, ...$targets);
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 	 */
122 122
 	protected function _valueASN1() {
123 123
 		$elements = array_map(
124
-			function (Targets $targets) {
124
+			function(Targets $targets) {
125 125
 				return $targets->toASN1();
126 126
 			}, $this->_targets);
127 127
 		return new Sequence(...$elements);
Please login to merge, or discard this patch.