bug #1534 RedirectableUrlMatcher needs to return a proper array with the _route parameter (slipo)
This PR was merged into the 2.1.x-dev branch. Discussion ---------- RedirectableUrlMatcher needs to return a proper array with the _route parameter Symfony's HttpUtils's checkRequestPath() expects RedirectableUrlMatcher to return an array with '_route'. This throws a notice `Undefined index: _route`: ``` $coll = new RouteCollection(); $coll->add('foo', new Route('/foo', array(), array(), array(), '', array('https'))); $matcher = new RedirectableUrlMatcher($coll, new RequestContext()); $httpUtils = new HttpUtils(null, $matcher); $request = Request::create('http://example.com/foo'); $httpUtils->checkRequestPath($request, 'foo'); ``` It's an issue with my app although I haven't yet taken the time to make a simplified app to show the issue besides the above. Commits ------- e6d41b8d RedirectableUrlMatcher needs to return a proper array with the _route parameter
Showing
Please register or sign in to comment