Controller/DefaultController.php
author ymh <ymh.work@gmail.com>
Wed, 05 Oct 2011 23:51:31 +0200
changeset 1 06a22ff5d58d
permissions -rw-r--r--
first commit forminimal bundle structure

<?php

namespace IRI\Bundle\WikiTagBundle\Controller;

use Symfony\Bundle\FrameworkBundle\Controller\Controller;


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