-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: [Auto Routing Improved] fallback to default method #7162
feat: [Auto Routing Improved] fallback to default method #7162
Conversation
c136237
to
701bddd
Compare
701bddd
to
d93340e
Compare
Added the docs. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice feature.
Can we please get this commit released asap? This is a much needed fix. |
We hope to release v4.4.0 soon. |
Thank you for your reply. Any estimation when 4.4 might be released? |
Personally, I would like to release it within a week or two if possible, or by the end of August at the latest. However, CodeIgniter has no official release schedule. |
@kenjis Just a bump if you could release this PR fast. :') |
I created the issue #7812 to make the current status clear. |
Description
If there is no method in the controller for the request URI, fallback to the default method.
E.g.:
GET /product/15
→
Product::get15()
Method not found→
Product::getIndex($id = '')
Method found and rungetIndex('15')
Checklist: