Skip to content

Commit

Permalink
fix typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
kenza-ya committed Aug 16, 2024
1 parent c5ef9cc commit 4250831
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 22.0.2

## Bugfixes

* fixing typing error

# Version 22.0.1

## Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion src/Observers/EeCleanUpGroupedObserver.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ class EeCleanUpGroupedObserver extends CleanUpGroupedProductRelationObserver
*/
protected function getLastPrimaryKey(): int
{
return $this->getSubject()->getLastRowId();
return (int)$this->getSubject()->getLastRowId();
}
}

0 comments on commit 4250831

Please sign in to comment.