@@ -10,7 +10,6 @@ |
||
10 | 10 | use UCD\Unicode\Character\WritableRepository; |
11 | 11 | use UCD\Unicode\Codepoint; |
12 | 12 | use UCD\Unicode\CodepointAssigned; |
13 | - |
|
14 | 13 | use UCD\Infrastructure\Repository\CharacterRepository\FileRepository\CharacterSlicer; |
15 | 14 | use UCD\Infrastructure\Repository\CharacterRepository\FileRepository\Property; |
16 | 15 | use UCD\Infrastructure\Repository\CharacterRepository\FileRepository\PropertyAggregators; |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | } |
203 | 203 | |
204 | 204 | /** |
205 | - * @return bool |
|
205 | + * @return boolean|null |
|
206 | 206 | */ |
207 | 207 | private function writeAggregations() |
208 | 208 | { |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * @param Property $property |
268 | 268 | * @param string $key |
269 | 269 | * @param Exception $notFoundException |
270 | - * @return Codepoint\Range[] |
|
270 | + * @return Codepoint\Range\Collection |
|
271 | 271 | * @throws Exception |
272 | 272 | */ |
273 | 273 | private function resolveCodepointsByProperty(Property $property, $key, Exception $notFoundException) |
@@ -44,6 +44,8 @@ |
||
44 | 44 | |
45 | 45 | /** |
46 | 46 | * {@inheritDoc} |
47 | + * @param string $uri |
|
48 | + * @param string $encoding |
|
47 | 49 | */ |
48 | 50 | public function open($uri, $encoding = null, $options = 0) |
49 | 51 | { |
@@ -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 | { |