Controller/DefaultController.php
changeset 2 13f43f53d0ba
parent 1 06a22ff5d58d
child 3 976d922e52f0
equal deleted inserted replaced
1:06a22ff5d58d 2:13f43f53d0ba
     1 <?php
       
     2 
       
     3 namespace IRI\Bundle\WikiTagBundle\Controller;
       
     4 
       
     5 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
       
     6 
       
     7 
       
     8 class DefaultController extends Controller
       
     9 {
       
    10     
       
    11     public function indexAction($name)
       
    12     {
       
    13         return $this->render('WikiTagBundle:Default:index.html.twig', array('name' => $name));
       
    14     }
       
    15 }