Application\HelloBundle\Controller\HelloController::indexAction PHP Method

indexAction() public method

public indexAction ( $name )
    public function indexAction($name)
    {
        return $this->render('HelloBundle:Hello:index.php', array('name' => $name));

        // render a PHP template instead
        // return $this->render('HelloBundle:Hello:index.php', array('name' => $name));
    }
HelloController