Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function dispatch() |
||
24 | { |
||
25 | $this->request->setControllerActionName($this->action); |
||
26 | $this->request->setControllerName($this->controller); |
||
27 | $this->request->setControllerExtensionName($this->extension); |
||
28 | $this->request->setArguments($this->arguments); |
||
29 | |||
30 | throw new ForwardException; |
||
31 | } |
||
32 | } |
||
33 |