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 ( c430e2...993294 )
by Nicholas
03:11
created
lib/UCD/Unicode/Codepoint/Collection.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     {
43 43
         $aggregator = new Aggregator();
44 44
 
45
-        $this->traverseWith(function (Codepoint $codepoint) use ($aggregator) {
45
+        $this->traverseWith(function(Codepoint $codepoint) use ($aggregator) {
46 46
             $aggregator->addCodepoint($codepoint);
47 47
         });
48 48
 
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $builder = new RegexBuilder();
58 58
 
59
-        $this->traverseWith(function (Codepoint $codepoint) use ($builder) {
59
+        $this->traverseWith(function(Codepoint $codepoint) use ($builder) {
60 60
             $builder->addCodepoint($codepoint);
61 61
         });
62 62
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     {
109 109
         $characters = TransformationFormat\StringUtility::split($string, $encoding);
110 110
 
111
-        $mapper = function ($character) use ($encoding) {
111
+        $mapper = function($character) use ($encoding) {
112 112
             return Codepoint::fromEncodedCharacter($character, $encoding);
113 113
         };
114 114
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
     {
156 156
         $characters = '';
157 157
 
158
-        $this->traverseWith(function (Codepoint $codepoint) use ($encoding, &$characters) {
158
+        $this->traverseWith(function(Codepoint $codepoint) use ($encoding, &$characters) {
159 159
             $characters .= $codepoint->toEncodedCharacter($encoding);
160 160
         });
161 161
 
Please login to merge, or discard this patch.