Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  fix Sequence::lazyStartingWith return type
  • Loading branch information
Baptouuuu committed Nov 26, 2022
2 parents 98c07fe + 919fd0f commit 30aadb0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Changelog

## 4.7.1 - 2022-11-27

### Fixed

- Fixed `Sequence::lazyStartingWith()` return type declaration

## 4.7.0 - 2022-11-26

## Added
### Added

- `Innmind\Immutable\Sequence::lazyStartingWith()`

Expand Down
2 changes: 2 additions & 0 deletions src/Sequence.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ public static function lazy(callable $generator): self
* @psalm-pure
*
* @param V $values
*
* @return self<V>
*/
public static function lazyStartingWith(...$values): self
{
Expand Down

0 comments on commit 30aadb0

Please sign in to comment.