src/Company/BaseBundle/Controller/DefaultController.php
author ymh <ymh.work@gmail.com>
Wed, 28 Sep 2011 17:45:50 +0200
changeset 2 806e57d67020
child 4 02eab39cf8c6
permissions -rw-r--r--
Base Bundle commit

<?php

namespace Company\BaseBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;


class DefaultController extends Controller
{
    
    public function indexAction($name)
    {
        return $this->render('CompanyBaseBundle:Default:index.html.twig', array('name' => $name));
    }
}