Open
Conversation
f8fd5db to
39de3dd
Compare
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new documentation page describing CakePHP’s upcoming controller attribute routing feature and integrates it into the cookbook navigation and existing routing documentation for discoverability.
Changes:
- Added new
development/attribute-routing.mdpage documenting routing-related PHP attributes and usage patterns. - Added cross-reference tips in
development/routing.mdpointing readers to the new attribute routing page. - Updated the English sidebar TOC to include the new page.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
toc_en.json |
Adds the new “Attribute Routing” entry under Development in the sidebar. |
docs/en/development/routing.md |
Adds tip callouts linking to the new attribute routing documentation. |
docs/en/development/attribute-routing.md |
Introduces a comprehensive guide/reference page for attribute routing in CakePHP. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Refs PR cakephp/cakephp#19293
Adds documentation for the new attribute routing feature introduced in 6.0 (waiting merge).
development/attribute-routing.mdcovering all routing attributes (#[Route],#[Get],#[Post], etc.), controller-level attributes (#[Scope],#[Prefix],#[Middleware],#[Extensions],#[RouteClass],#[Resource]), named argument binding, inheritance, inline closure middleware (PHP 8.5+), and combining with file-based routes.development/routing.md(intro, Prefix Routing, Middleware, RESTful Routing sections).