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 ( 0989e1...73a8c5 )
by Joni
04:44
created
lib/X509/Certificate/Extension/Target/Targets.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 	 */
38 38
 	public static function fromASN1(Sequence $seq) {
39 39
 		$targets = array_map(
40
-			function (UnspecifiedType $el) {
40
+			function(UnspecifiedType $el) {
41 41
 				return Target::fromASN1($el->asTagged());
42 42
 			}, $seq->elements());
43 43
 		return new self(...$targets);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
 	protected function _allOfType($type) {
62 62
 		return array_values(
63 63
 			array_filter($this->_targets, 
64
-				function (Target $target) use ($type) {
64
+				function(Target $target) use ($type) {
65 65
 					return $target->type() == $type;
66 66
 				}));
67 67
 	}
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 	 */
107 107
 	public function toASN1() {
108 108
 		$elements = array_map(
109
-			function (Target $target) {
109
+			function(Target $target) {
110 110
 				return $target->toASN1();
111 111
 			}, $this->_targets);
112 112
 		return new Sequence(...$elements);
Please login to merge, or discard this patch.
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.