Skip to content

Commit

Permalink
fix(messenger): Fix deserialize operations objects (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfmok authored Nov 20, 2024
1 parent 1bbd506 commit c4bd889
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Massive release with added support for Elastica 8 and all deprecated code removed.

### Fixed

- Fix deserialize operations property of `MultipleIndexationRequest`

### Added

- Upgraded `ruflin/elastica` to v8 (Breaking Change)
Expand Down
1 change: 1 addition & 0 deletions src/Messenger/MultipleIndexationRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public function __construct(array $operations)
$this->operations = $operations;
}

/** @return array<IndexationRequest> */
public function getOperations(): array
{
return $this->operations;
Expand Down

0 comments on commit c4bd889

Please sign in to comment.