Application\HelloBundle\Controller\HelloController::indexAction PHP 메소드

indexAction() 공개 메소드

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