-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
Raise notice when controller is defined with a starting back slash #30045
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -54,6 +54,9 @@ protected function instantiateController($class) | |||||
try { | ||||||
return parent::instantiateController($class); | ||||||
} catch (\Error $e) { | ||||||
if (0 === strpos($class, '\\')) { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Instead of deprecating this possibility, what about trimming the starting backslash in the |
||||||
@trigger_error(sprintf('The controller definition "%s" must not begin with "\"', $class), E_USER_DEPRECATED); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe: must not start with a slash Instead of “\” ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. TBH it's backslash actually ;) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agree with @OskarStark and you. What about
Suggested change
It looks like |
||||||
} | ||||||
} | ||||||
|
||||||
$this->throwExceptionIfControllerWasRemoved($class, $e); | ||||||
|
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.
If it's a
notice
IMO we should nottrigger
only on Excpetion