Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions docs/book/v6/extended-features/handler-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ In this way, the developer can easily figure out the functionality of each handl

## Mapping of the handlers

The full mapping of the handlers and their current paths and actions can be found [here](https://docs.dotkernel.org/img/api/naming-convention.png).
![naming-convention-thumbnail](https://docs.dotkernel.org/img/api/naming-convention-thumbnail.png)
The full mapping of the handlers and their current paths and actions can be found [**here**](https://docs.dotkernel.org/img/api/naming-convention.png).

[![naming-convention-thumbnail](https://docs.dotkernel.org/img/api/naming-convention-thumbnail.png)](https://docs.dotkernel.org/img/api/naming-convention.png)
8 changes: 4 additions & 4 deletions docs/book/v6/extended-features/route-grouping.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $routeCollector->group('/user/' . $uuid)

The advantages of this new implementation:

- DRY - no need for repeating common route parts
- encapsulation - similar routes are grouped in a single block of code (vs each route a separate statement)
- easy path refactoring - modify all routes at once by changing only the prefix
- easy copying/moving - copying/moving an entire group makes sure that you don't accidentally omit a route
- **DRY**- no need for repeating common route parts
- **encapsulation** - similar routes are grouped in a single block of code (vs each route a separate statement)
- **easy path refactoring** - modify all routes at once by changing only the prefix
- **easy copying/moving** - copying/moving an entire group makes sure that you don't accidentally omit a route
2 changes: 1 addition & 1 deletion docs/book/v6/upgrading/UPGRADE-6.0.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# UPGRADE FROM 5.* TO 6.0 (WORK IN PROGRESS)
# UPGRADE FROM 5.x TO 6.0 (WORK IN PROGRESS)

-------------------------

Expand Down
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ nav:
- "Core and App": v6/extended-features/core-and-app.md
- "New Handler Structure": v6/extended-features/handler-structure.md
- "Route Grouping": v6/extended-features/route-grouping.md
- "Problem Details": v6/extended-features/problem-details.md
- Commands:
- "Create admin account": v6/commands/create-admin-account.md
- "Generate database migrations": v6/commands/generate-database-migrations.md
Expand Down