-
Notifications
You must be signed in to change notification settings - Fork 79
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] UT in yii2 #542
Comments
oh, yii2 looks dropping the rule information public function parseRequest($request)
{
if ($this->enablePrettyUrl) {
/* @var $rule UrlRule */
foreach ($this->rules as $rule) {
$result = $rule->parseRequest($this, $request);
if (YII_DEBUG) {
Yii::debug([
'rule' => method_exists($rule, '__toString') ? $rule->__toString() : get_class($rule),
'match' => $result !== false,
'parent' => null,
], __METHOD__);
}
if ($result !== false) {
return $result;
}
} |
Idea for #542 (comment) try to hook UrlRule::parseRequest and add a magic key on $request |
This was referenced Nov 3, 2023
close as done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Feature
Task
The text was updated successfully, but these errors were encountered: