@@ -18,7 +18,7 @@ discard block |
||
| 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 |
||
| 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); |
@@ -7,11 +7,9 @@ |
||
| 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 | { |