Skip to content

Commit

Permalink
Fix phpdoc of string generators
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati committed Oct 29, 2023
1 parent 9849889 commit e95ab80
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build/DataStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function getLatestVersion(): string
/**
* @throws \RuntimeException
*
* @return string[]
* @return \Generator<string>
*/
public function readBlocks(string $version): Generator
{
Expand All @@ -70,7 +70,7 @@ public function readBlocks(string $version): Generator
/**
* @throws \RuntimeException
*
* @return string[]
* @return \Generator<string>
*/
public function readUnicodeData(string $version): Generator
{
Expand All @@ -80,7 +80,7 @@ public function readUnicodeData(string $version): Generator
/**
* @throws \RuntimeException
*
* @return string[]
* @return \Generator<string>
*/
public function readNamesList(string $version, bool $skipComments = true): Generator
{
Expand All @@ -90,7 +90,7 @@ public function readNamesList(string $version, bool $skipComments = true): Gener
/**
* @throws \RuntimeException
*
* @return string[]
* @return \Generator<string>
*/
public function readNameAliases(string $version, bool $skipComments = true): Generator
{
Expand Down

0 comments on commit e95ab80

Please sign in to comment.