The ControlerResolver service as been moved in http_kernel

This commit is contained in:
Damien Alexandre 2011-01-30 08:43:30 -08:00 committed by Fabien Potencier
parent f470c5605e
commit 56483dc14f

View File

@ -42,6 +42,6 @@ class InternalController extends ContainerAware
$attributes->add($tmp);
}
return $this->container->get('controller_resolver')->forward($controller, $attributes->all(), $request->query->all());
return $this->container->get('http_kernel')->forward($controller, $attributes->all(), $request->query->all());
}
}