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 ( fe1a37...e5e5c7 )
by Nicholas
02:45
created
lib/UCD/Unicode/Character/Collection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function getCharacters()
40 40
     {
41
-        return $this->filterWith(function (CodepointAssigned $assigned) {
41
+        return $this->filterWith(function(CodepointAssigned $assigned) {
42 42
             return $assigned instanceof Character;
43 43
         });
44 44
     }
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      */
49 49
     public function getNonCharacters()
50 50
     {
51
-        return $this->filterWith(function (CodepointAssigned $assigned) {
51
+        return $this->filterWith(function(CodepointAssigned $assigned) {
52 52
             return $assigned instanceof NonCharacter;
53 53
         });
54 54
     }
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      */
59 59
     public function getSurrogates()
60 60
     {
61
-        return $this->filterWith(function (CodepointAssigned $assigned) {
61
+        return $this->filterWith(function(CodepointAssigned $assigned) {
62 62
             return $assigned instanceof Surrogate;
63 63
         });
64 64
     }
Please login to merge, or discard this patch.