[FrameworkBundle] fixed $view['actions']->output() signature to match that of ->render()

This commit is contained in:
Kris Wallsmith 2010-08-31 22:43:50 -07:00 committed by Fabien Potencier
parent 60ea1eef69
commit afa8bfcdd6

View File

@ -42,9 +42,9 @@ class ActionsHelper extends Helper
*
* @see render()
*/
public function output($controller, array $options = array())
public function output($controller, array $attributes = array(), array $options = array())
{
echo $this->render($controller, $options);
echo $this->render($controller, $attributes, $options);
}
/**