Skip to content

Commit

Permalink
fix: Add missing from keyword.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Jan 3, 2022
1 parent 6df94ee commit d179b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Operation/Chunk.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ static function (Iterator $iterator) use ($sizes): Generator {
$size = $sizesIterator->current();

if (0 >= $size) {
return yield [];
return yield from [];
}

if (count($values) !== $size) {
Expand Down

0 comments on commit d179b11

Please sign in to comment.