@@ -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) |
@@ -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); |