Skip to content
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
9757b37
Issue #110: update book tutorial
Howriq May 12, 2025
b473f4c
Issue #110: update book tutorial
Howriq May 13, 2025
564d9bf
Issue #110: update book tutorial
Howriq May 13, 2025
bd407bf
Issue #110: update book tutorial
Howriq May 13, 2025
b1789bd
Issue #110: update book tutorial
Howriq May 13, 2025
cc62378
Issue #110: update book tutorial
Howriq May 14, 2025
44cd800
Issue #110: update book tutorial
Howriq May 14, 2025
ae15291
Issue #110: update book tutorial
Howriq May 14, 2025
dec0212
Issue #110: update book tutorial
Howriq May 15, 2025
721a2a7
Issue #110: update book tutorial
Howriq May 16, 2025
396ac51
Issue #110: update book tutorial
Howriq May 19, 2025
99eba21
Issue #104: how to send an email and parse the content
Howriq May 19, 2025
51be99d
Issue #104: how to send an email and parse the content
Howriq May 20, 2025
c642ea1
Issue #104: how to send an email and parse the content
Howriq May 20, 2025
6e34aa9
Issue #104: how to send an email and parse the content
Howriq May 20, 2025
f3e1720
Issue #104: how to send an email and parse the content
Howriq May 20, 2025
88628e1
Issue #104: how to send an email and parse the content
Howriq May 20, 2025
3e8480a
Issue #104: how to send an email and parse the content
Howriq May 20, 2025
96f916f
Issue #104: how to send an email and parse the content
Howriq May 21, 2025
a0b49b1
Issue #104: how to send an email and parse the content
Howriq May 21, 2025
e6d0528
Issue #104: how to send an email and parse the content
Howriq May 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions docs/book/v5/tutorials/create-book-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -560,13 +560,6 @@ class BookHandler extends AbstractHandler implements RequestHandlerInterface
return $this->createResponse($request, $book);
}

public function getCollection(ServerRequestInterface $request): ResponseInterface
{
$books = $this->bookService->getRepository()->getBooks($request->getQueryParams());

return $this->createResponse($request, $books);
}

public function post(ServerRequestInterface $request): ResponseInterface
{
$inputFilter = (new BookInputFilter())->setData($request->getParsedBody());
Expand Down Expand Up @@ -661,7 +654,7 @@ class RoutesDelegator

$app->get(
'/book/' . $uuid,
BookCollection::class,
BookHandler::class,
'book.show'
);

Expand Down
Loading