Skip to content

Commit fcb8c6e

Browse files
committed
fixed GetBookListActionLogger
1 parent e168863 commit fcb8c6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/Containers/Book/Actions/Decorators/GetBookListActionLogger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class GetBookListActionLogger extends GetBookListActionDecorator
1111
{
1212
public function execute(PaginateRequestInterface $paginateRequest): BookCollection
1313
{
14-
$bookCollection = parent::execute($paginateRequest);
14+
$bookCollection = $this->getBookListActionInterface->execute($paginateRequest);
1515
\Log::info("returned " . count($bookCollection) . " books");
1616

1717
return $bookCollection;

0 commit comments

Comments
 (0)