-
Notifications
You must be signed in to change notification settings - Fork 81
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
Route parameters error #112
Comments
This function => |
This is not working as expected, I am using 1.6 Executor for now |
@caferyukseloglu sorry for the late reply, was too busy last month does PR #111 fix this issue? |
Hi, no, I had to get old function running in new one, so my system works RN. The options never used in new one MotaWord@eb55975 |
Oh, i recalled that 2.0 was actually under development and it's incomplete. |
it's like almost 9 years ago and I have already forgot what I was implementing LOL |
I guess it's related to PHPSGI, to make it compatible with PHPSGI |
Lol I have been there, you can use old RouteExecutor.php it is fine |
Hi, updated 1.6 to 2.0 I am trying to get a rout with someroute/:param1/:param2 my controller catches first param as array and second null. This is how I do the excute;
$router = new Mux;
$router->get('/someroute/:param1/:param2', ['\Api\Controller\SomeController', 'getSometing'], ['scope' => 'default']);
$route = $router->dispatch($incomingURL);
$result = RouteExecutor::execute($route);
The text was updated successfully, but these errors were encountered: