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 ( bce1af...0edef5 )
by Nicholas
02:59
created
UCD/Unicode/Character/Repository/Capability/PropertySearchByIteration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
      */
19 19
     public function getCodepointsByBlock(Block $block)
20 20
     {
21
-        $comparator = function (CodepointAssigned $item) use ($block) {
21
+        $comparator = function(CodepointAssigned $item) use ($block) {
22 22
             return $item->getGeneralProperties()
23 23
                 ->getBlock()
24 24
                 ->equals($block);
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      */
36 36
     public function getCodepointsByCategory(GeneralCategory $category)
37 37
     {
38
-        $comparator = function (CodepointAssigned $item) use ($category) {
38
+        $comparator = function(CodepointAssigned $item) use ($category) {
39 39
             return $item->getGeneralProperties()
40 40
                 ->getGeneralCategory()
41 41
                 ->equals($category);
Please login to merge, or discard this patch.
lib/UCD/Console/Application/Command/RepositoryTransferCommand.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -7,11 +7,9 @@
 block discarded – undo
7 7
 use Symfony\Component\Console\Input\InputDefinition;
8 8
 use Symfony\Component\Console\Input\InputInterface;
9 9
 use Symfony\Component\Console\Output\OutputInterface;
10
-
11 10
 use UCD\Unicode\Character\Repository;
12 11
 use UCD\Unicode\Character\WritableRepository;
13 12
 use UCD\Exception\InvalidArgumentException;
14
-use UCD\Infrastructure\Repository\CharacterRepository\XMLRepository;
15 13
 
16 14
 class RepositoryTransferCommand extends RepositoryUtilisingCommand implements \SplObserver
17 15
 {
Please login to merge, or discard this patch.